Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save marketingclouded/301840cd360a2eb7d3f08a72a8204b6c to your computer and use it in GitHub Desktop.
Save marketingclouded/301840cd360a2eb7d3f08a72a8204b6c to your computer and use it in GitHub Desktop.
{% 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