我有一个opencart网站,我需要在我的opencart网站中添加Google电子商务跟踪如何添加?哪里会加?我有一个谷歌脚本代码,但我不知道这个,请任何人帮助我。
此处谷歌谷歌电子商务跟踪代码如何转换我们的基础请帮助:
<script type="text/javascript">
ga('require', 'ecommerce');
ga('ecommerce:addTransaction', {
'id': '1234', // Transaction ID. Required. dynamic variable of order id
'affiliation': 'Acme Clothing', // Affiliation or store name. Kuberan Silks
'revenue': '11.99', // Grand Total. grand total dynamic variable of the price
'shipping': '5', // Shipping. dynamic variable of shipping
'tax': '1.29' // Tax. dynamic tax variable
});
ga('ecommerce:addItem', {
'id': '1234', // Transaction ID. Required.
'name': 'Fluffy Pink Bunnies', // Product name. Required.
'sku': 'DD23444', // SKU/code.
'category': 'Party Toys', // Category or variation.
'price': '11.99', // Unit price.
'quantity': '1' // Quantity.
});
ga('ecommerce:send');
</script>