How do I export the total amount for refunded gift card transactions from a Shopify order?
When a customer uses a gift card along with a credit card to pay for the order and the credit card portion of the transaction fails, Shopify rolls ba…
When a customer uses a gift card along with a credit card to pay for the order and the credit card portion of the transaction fails, Shopify rolls ba…
When an "Automatic Discount" is applied to specific line items in the Shopify order, the discount information is stored in the fi…
You may want to export the total amount paid by the customer so far for a partially paid order or the actual amount paid if the order is refunded/par…
To export the total refunded line item quantity from a Shopify order, you can use the formula below in the Calculated Fields section of EZ Expor…
If you're a bakery, for example, you may provide an option to your customers to specify the Delivery Date or Pickup Date when they place an order…
The Shopify API doesn't provide a fulfilled_at field that EZ Exporter can filter directly. However, the API does provide the list of fulfillme…
There may be times where you want to export all Shopify orders that are either in open or closed status and exclude those that are cancelled. Sinc…
You can use the Custom Filters > User-Defined Fields section of the Data Settings to filter by Shopify Metafields. 1. First, you'll need to…
In the Custom Filters section of the Data Settings, you can add this filter to only include orders whose payment method is "Shop Pay Instal…
Shopify product URLs use the product handle as part of the URL. To generate the URLs automatically, you can use Custom Fields in EZ Exporter …
You can use the formula below in EZ Exporter to remove duplicate spaces from the Shopify field value: " ".join({{ field_id }}.split())…
We have a function called strip_html_tags() that can do this for you. For example, in the Calculated Fields section of a Product Data Setting…
You can use the .strip() method to remove all leading and trailing spaces or line breaks from the data. For example, if the order's note field…
Some systems may not be able to parse the CSV file properly if the field data contains newline characters or line breaks.In the Data Settings, under …
The payment_gateway_names field is in JSON format by default and will look something like this: ["gift_card", "shopify_…