在一个站点和另一个域上的购物车之间实现谷歌分析跨域跟踪。在 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']);
每种情况下的效果是什么?