Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save marketingclouded/35cb2db8b01c771a5b988f16910c86c3 to your computer and use it in GitHub Desktop.
Save marketingclouded/35cb2db8b01c771a5b988f16910c86c3 to your computer and use it in GitHub Desktop.
<script type="text/javascript">
var _etmc = _etmc || [];
document.querySelector('.product-form__cart-submit').addEventListener('click',function () {
_etmc.push(["setOrgId", "MID"]);
_etmc.push(["trackCart", { "cart": [
{"item" : "{{ product.handle }}", "quantity": "{{ 1 }}", "price" : "{{ product.price | money_without_currency }}", "unique_id" : "{{ product.selected_or_first_available_variant.sku }}" },
{%- for item in cart.items -%}
{"item" : "{{ item.product.handle }}", "quantity": "{{ item.quantity }}", "price" : "{{ item.product.price | money_without_currency }}", "unique_id" : "{{ item.sku }}" },
{% endfor %}
]}]);
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment