Last active
October 13, 2020 16:36
-
-
Save marketingclouded/301840cd360a2eb7d3f08a72a8204b6c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% for variant in product.variants %} | |
_etmc.push(["updateItem", | |
{ | |
"item": "{{ product.handle }}", | |
"unique_id": "{{ variant.sku }}", | |
"name": "{{ product.title }}", | |
"url": "https://yourstoredomain{{ product.url }}?variant={{ variant.id }}", | |
"item_type": "product", | |
"available": "{% if product.available == true %}Y{% else %}N{% endif %}", | |
"image_url": "https:{{ product | img_url: "medium" }}", | |
"price": "{{ variant.price | money_without_currency }}", | |
"description": "{{ product.description }}", | |
"Type": "{{ product.type }}", | |
"Tags": ["{{ product.tags | join: '", "' }}"] | |
} | |
]); | |
{% endfor %} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment