我试图弄清楚为什么 Google Analytics 中的电子商务跟踪似乎不起作用。我可以看到正确跟踪的页面浏览量,但没有交易。
来自确认页面的片段:
<head>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-XXXXXXX-1']);
_gaq.push(['_setDomainName', '.mydomain.com']);
_gaq.push(['_trackPageview']);
_gaq.push(['b._setAccount', 'UA-YYYYYYYY-1']);
_gaq.push(['b._setDomainName', 'none']);
_gaq.push(['b._addTrans',
'44bbd391-ff38-4f8d-ad68-aec490666151',
'Name',
'1.00',
'',
'',
'',
'',
''
]);
_gaq.push(['b._addItem',
'44bbd391-ff38-4f8d-ad68-aec490666151',
'15',
'test',
'',
'1.00',
'1'
]);
_gaq.push(['b._trackTrans']);
_gaq.push(['b._trackPageview']);
(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>
...
</head>
我正在使用 Firebug 监控页面上的流量,确认所有像素请求都已发出并返回正常。
我读到必须等待几个小时,最多一天,然后才能在 GA 中看到结果,但我只需等待几分钟就可以看到页面浏览量。
但是,在任何地方都找不到使用相同跟踪器对象(“b”)跟踪的交易(电子商务报告的刷新速度会比页面浏览量慢吗?)