我正在尝试修改我在测试时注册的错误Google Analytics电子商务交易。我在网站上创建了一个出色的HTML页面,其中包含以下代码,期望它能够更改事务。在访问该页面并等待24小时后,我发现Google Analytics中的电子商务交易没有变化。
我确保交易ID与原始交易相同。
我使用Chrome的Google跟踪代码管理器插件来确保我的JS代码没有错误,并且在加载页面时在开发者控制台上看不到任何内容。
<html>
<head>
<title></title>
</head>
<body>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('require', 'ecommerce');
ga('create', 'UA-XXXXXXX-1', 'auto');
// ga('send', 'pageview');
ga('ecommerce:addTransaction', {
'id': 'tok_XXXXXXXXXXXXXXXXXXXXXXXX', // Transaction ID. Required.
'affiliation': 'XXXXXX XXXXXX Website', // Affiliation or store name.
'revenue': '100.00', // Grand Total.
'shipping': '0', // Shipping.
'tax': '20.00' // Tax.
});
ga('ecommerce:addItem', {
'id': 'tok_XXXXXXXXXXXXXXXXXXXXXXX', // Transaction ID. Required.
'name': 'XXX XXXXXX XXXX Membership', // Product name. Required.
'sku': 'product-name', // SKU/code.
'category': 'Special Offers/XXX XXXXXX XXXX', // Category or variation.
'price': '100.00', // Unit price.
'quantity': '1' // Quantity.
});
ga('ecommerce:send');
</script>
</body>
</html>