我有GA自定义变量的问题。 我将以下代码段插入HTML源代码。
_gaq.push(['_setCustomVar', 3, 'AgencyType', '<Agency Type Sample>', 3]);
页面上的完整JS代码:
var _gaq = _gaq || [];
_gaq.push(['_setAccount', '<account #>']);
_gaq.push(['_setCustomVar', 3, 'AgencyType', '<Agency Type Sample>', 3]);
_gaq.push(['_setDomainName', 'none']);
_gaq.push(['_setAllowLinker', true]);
_gaq.push(['_setAllowHash', false]);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://' : 'http://') + 'stats.g.doubleclick.net/dc.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();`
此代码包含在Magento的每个页面中。 但是,当我查看我的分析时,它会显示下一个结果
如果查看交易列,您会注意到66笔交易中有39笔。所以我想问为什么会这样。
答案 0 :(得分:1)
您使用了doubleclick.net
scripit,但浏览器广告拦截(http://adblockplus.com ..)已阻止doubleclick.net
网站。
这个问题不是完美的原因。
但许多其他浏览器安装广告拦截软件, 所以你可以使用谷歌标签管理器或其他交易捕获解决方案。
(我正在为中国客户工作,但中国有great fire wall
,所以我们不相信ga或某些东西)