Learn / CSV errors
Fix Shopify CSV invalid gift card values
Gift card-related rows break when value fields and product settings conflict with Shopify gift card requirements.
Why Shopify throws this error
Gift card products use specific field combinations. Conflicting inventory/shipping values can invalidate rows.
Common causes
- - Gift card rows include physical shipping attributes.
- - Price and compare-at values are non-numeric.
- - Gift card flags are inconsistent across variants.
- - Template rows mixed gift card and physical-product logic.
CSV example that fails
Handle,Title,Gift Card,Variant Price
store-credit,Store Credit,TRUE,$50 USD
Corrected CSV example
Handle,Title,Gift Card,Variant Price
store-credit,Store Credit,TRUE,50.00
Manual fix steps
- 1. Validate gift card flag values for intended products.
- 2. Normalize monetary columns to numeric format.
- 3. Remove incompatible physical-product fields where needed.
- 4. Re-check import behavior for gift card rows.
RowReady-assisted fix path
- 1. Use file check to isolate gift-card field conflicts.
- 2. Apply safe numeric and boolean fixes per row.
- 3. Export corrected file once all conflicts clear.
Related Shopify CSV issues