google analytics 2 domain with multiple (infinite) subdomain goals setting
I have 2 domains, lets say:
domain-landing.com has multiple (let's assume infinite) subdomains
For each sub-domain, there is a similar landing page that leads all traffic to domain-checkout.com
domain-checkout.com is a place where the transaction is done (checkout). i have set up Destination-Type Goals on domain-checkout.com/checkout
But when i checked analytics report for Landing Page there's no conversion at all.
I have implemented this https://support.google.com/analytics/answer/1034342?hl=en
on *.domain-landing.com:
ga('create', 'UA-XXXXXXX-Y', 'auto', {'allowLinker': true});
ga('require', 'linker');
ga('linker:autoLink', ['domain-checkout.com']);
on domain-checkout.com:
ga('create', 'UA-XXXXXXX-Y', 'auto', {'allowLinker': true});
ga('require', 'linker');
ga('linker:autoLink', ['domain-landing.com']);
in my case, how to set up google analytics correctly, so I can track my total conversion from all subdomain on domain-landing.com?
链接地址: http://www.djcxy.com/p/63266.html下一篇: 谷歌分析2域与多个(无限)子域目标设置