範例:shopify 加入購物車
Google Tag Manager 安裝
Last updated
<script>
if({{shopify [add_to_cart] prdouct_items}} !== undefined && {{shopify [add_to_cart] prdouct_items}} != null){
var items = {{shopify [add_to_cart] prdouct_items}};
if(items.length > 0){
for(var i in items){
if(items[i] !== undefined){
itg('event', 'product',{
'type':'add',
'id': items[i].id,
'category': items[i].category,
'brand': items[i].brand,
'tag': '',
'price': items[i].price * items[i].quantity
});
}
}
}
}
</script>