How can I extract a specific tag from a list of tags?
You can use the search_list() function to search a list of tags and output the matching results: search_list(to_list({{ tags }}), "men"…
You can use the search_list() function to search a list of tags and output the matching results: search_list(to_list({{ tags }}), "men"…
There may be cases where you've placed additional product information directly in the product's HTML description since you didn't find anywhere else …
Since it's possible for a Shopify order to have multiple refund transactions, this gets a bit more complicated as we'll need to parse a&…
The Order API has a field called user_id we can use for filtering. This is the ID of the user logged into Shopify POS who proces…
To export only Shopify orders that contain a specific product, you can filter by the fields that start with "List of Lineitem" under the&nb…
You can use the format_as_money() function in the Calculated Fields to do this: Examples: Format the "total_price" field with a thous…
Some countries use the period character as the thousands separator and the comma character as the decimal separator when formatting currencies. Yo…
Shopify image URLs typically looks something like this: https://cdn.shopify.com/s/files/1/1165/2200/products/Sleeping-Cat.jpg?v=1501485987 …
We support a function called search_attributes(data, attribute_name) which enables our users to do this. For example, let's say you have a Car…
The field line_items.properties is typically used to capture additional custom options or personalization data from the customer for e…
We have a function called strip_non_numeric_chars() which you can use in the Calculated Fields that will take care of this for you automatically. …
There are a couple ways you can take care of this in EZ Exporter. By default, Shopify adds a hash symbol ("#") in front of the…
In EZ Exporter, you can use a Calculated Field with a formula like below to strip out the query string portion of the URL data (the part after the qu…
The Shopify API exposes the following information in the transaction data:"payment_details": { "avs_result_code": "123456", "credit_card_bin": …
If you need to create separate CSV or Excel exports based on a line item's assigned location, you can use the Custom Filters option in EZ Ex…