跟踪和重定向 技术整合 引导链接
我需要一些帮助来配置并将代码添加到我的Woocomerce商店
Linkwise添加了一些重定向代码,如果你帮我填充核心变量,那将非常有用
3. Retargeting tracking codes
Product listing
<script>
lw("addItem", {
id: "ID (as given in the XML) of first product shown"
,price: "unit price of first product, without VAT e.g. 13,49"
});
lw("addItem", {
id: "ID (as given in the XML) of second product shown"
,price: "unit price of second product, without VAT e.g. 25,16"
});
// more items
lw("listItems");
</script>
3.4产品页面
<script>
lw("addItem", {
id: "ID (as given in the XML) of product"
,price: "unit price of product, without VAT e.g. 13,49"
});
lw("viewItem");
</script>
3.5购物车/购物篮
<script>
lw("addItem", {
id: "ID (as given in the XML) of first product shown"
,price: "unit price of first product, without VAT e.g. 13,49"
,quantity: "quantity of first product"
});
lw("addItem", {
id: "ID (as given in the XML) of second product shown"
,price: "unit price of second product, without VAT e.g. 25,16"
,quantity: "quantity of second product"
});
// more items
lw("viewCart");
</script>