GA - 电子商务不跟踪项目

时间:2013-04-17 15:51:13

标签: javascript google-analytics

我在以下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>

有人能在这看到这个问题吗?

1 个答案:

答案 0 :(得分:1)

您似乎错过了category的{​​{1}}参数 - 请参阅Google Docs for _addItem

虽然_addItem参数是可选的,但将其删除会导致错过所需的category参数。

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

category