gpt4 book ai didi

javascript - GA - 电子商务不跟踪元素

转载 作者:行者123 更新时间:2023-11-28 02:18:24 25 4
gpt4 key购买 nike

我在以下 javascript 代码中发现问题时遇到了严重的困难。

Google Analytics(分析)可以很好地跟踪我的交易,但它没有显示任何产品。

此代码取自收据页面的“查看源代码”。

<script type="text/javascript"> 

var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'xxxxxxx-x']); // I replaced my account no.
_gaq.push(['_trackPageview']);
_gaq.push(['_set', 'currencyCode', 'DKK']);

_gaq.push(['_addTrans',
'28996',
'xxxxx.xx', // I replaced the domainname with xxxxx.xx
'104.00',
'20.80',
'0.00',
'fredercia',
'Denmark'
]);


_gaq.push(['_addItem',
'28996',
'150649',
'BRAUN ORAL-B ELTANDB&#216;RSTE',
'99.00',
'1'
]);




_gaq.push(['_addItem',
'28996',
'150000',
'5 dages LOP-salg',
'5.00',
'1'
]);


_gaq.push(['_trackTrans']);

(function () {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';

var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();

</script>

有人能看到这里的问题吗?

最佳答案

您似乎缺少 _addItemcategory 参数 - 请参阅 Google Docs for _addItem .

虽然category参数是可选的,但省略它会导致丢失所需的quantity参数。

如果没有,您可以为 category 传递一个空字符串:

_gaq.push(['_addItem', 
'28996',
'150649',
'BRAUN ORAL-B ELTANDB&#216;RSTE',
'',
'99.00',
'1'
]);

关于javascript - GA - 电子商务不跟踪元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16064649/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com