google analytics 2 domain with multiple (infinite) subdomain goals setting

I have 2 domains, lets say:

  • domain-landing.com
  • domain-checkout.com
  • domain-landing.com has multiple (let's assume infinite) subdomains

  • foo.domain-landing.com
  • bar.domain-landing.com
  • hello.domain-landing.com
  • world.domain-landing.com
  • and so on...
  • 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

    上一篇: linux / unix进程的最高内存使用率

    下一篇: 谷歌分析2域与多个(无限)子域目标设置