How can I extract certain product information from the Shopify product description?
There may be cases where you've placed additional product information directly in the product's HTML description since you didn't find an…
There may be cases where you've placed additional product information directly in the product's HTML description since you didn't find an…
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…
You can use the ShopifyQL query below to generate a Shopify Analytics report that groups the session data from the last 365 days by the utm_source UT…
To export the conversion rate by page with EZ Exporter, create a Data Settings for "Analytics" data and use the ShopifyQL query below: …
When creating a Data Settings for a Product export, you can add the following in the Custom Filters section to filter products that don'…
Shopify image URLs typically looks something like this: https://cdn.shopify.com/s/files/1/1165/2200/products/Sleeping-Cat.jpg?v=1501485987 …
You can use the following variables in the Calculated Fields section of the Data Settings to export the B2B company name and external ID associated w…
Note: "Cart Attributes" is the same thing as "Note Attributes", which are the attributes under the "Additional Details"…
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. …
You can use a formula similar to the one below in the Calculated Fields to automatically remove numeric characters on export: "".join(…
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…