我有一个网上商店,用户来自许多不同的网站和新闻通讯。为了跟踪人们的来源,我们在Google Analytics中使用广告系列。 现在我们正在实施我们自己的外部支付网站。
用户下订单后,系统会将其重定向到我们的付款网站。成功付款后,应将其重定向回原始网站。在原始网站上,电子商务价值将会被发布到Google Analytics中。
当我按照上述方式执行此操作时,我在检查电子商务数据时丢失了广告系列。如何确保此信息不会丢失?
[编辑]
我发现添加'utm_nooverride'就应该了。但是,我无法在Google Analytics文档中清楚地找到它
答案 0 :(得分:0)
要解决上述问题:
在这两个网站上(是的,付款网站也应该有GA),您需要将_setAllowLinker
设置为true
,将_setDomainName
设置为'none'
。< / p>
IE:
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-XXXXX-YY']);
_gaq.push(['_trackPageview']);
_gaq.push(['_setAllowLinker', true]);
_gaq.push(['_setDomainName', 'none']);
(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>