Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save marketingclouded/7ea0c70486a09b1bed06dacabef78da5 to your computer and use it in GitHub Desktop.

Select an option

Save marketingclouded/7ea0c70486a09b1bed06dacabef78da5 to your computer and use it in GitHub Desktop.
<script>
_etmc.push(["setOrgId", "MID"]);
_etmc.push(["trackCart", { "cart": [
{%- 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>
{% if cart.item_count == 0 %}
<script>
_etmc.push(["setOrgId", "MID"]);
_etmc.push(["trackCart", { "clear_cart": true } ]);
</script>
{% endif %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment