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

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. 1. Validate gift card flag values for intended products.
  2. 2. Normalize monetary columns to numeric format.
  3. 3. Remove incompatible physical-product fields where needed.
  4. 4. Re-check import behavior for gift card rows.

RowReady-assisted fix path

  1. 1. Use file check to isolate gift-card field conflicts.
  2. 2. Apply safe numeric and boolean fixes per row.
  3. 3. Export corrected file once all conflicts clear.

Related Shopify CSV issues