在网站与其他域上的购物车之间实施Google Analytics跨域跟踪。在WordPress网站上,保留了原始个人资料ID,以保持唯一域名报告的连续性:
WordPress网站
var _gaq = _gaq || [];
_gaq.push(['o._setAccount', 'UA-xxxxxxxx-4']);
_gaq.push(['o._trackPageview']);
_gaq.push(['xd._setAccount', 'UA-yyyyyyy-1']);
// other cross-domain parameters are set here...
_gaq.push(['xd._trackPageview']);
在购物车网站上,我是否需要使用相同的命名跟踪器来保持cookie直接?即,我需要在第二个网站上
购物车域
_gaq.push(['xd._setAccount', 'UA-yyyyyyy-1']);
_gaq.push(['xd._trackPageview']);
或者它可以保持默认值:
_gaq.push(['_setAccount', 'UA-yyyyyyy-1']);
_gaq.push(['_trackPageview']);
每种情况有什么影响?
答案 0 :(得分:0)
你不需要,但如果你这样做,它将以任何一种方式工作。