-1

Using Google Analytics, I am trying to track initiated from external site(siteA.com). At siteA.com, open new window to go main site(siteB.com).

So I put setDomainName("none"), trackPageview, and getLinkerUrl(URL_TO_SiteB) on siteA.com. And open URL returned from getLinkerUrl, open new window to go siteB.com And also put setDomainName("none"), setAllowLinker(true), trackPageview on siteB.com.

But, I think something wrong with this configuration.

At navigation summary, there is no previous page or next page at page tracked from siteA.com. And strange page(another page of siteB.com) is recorded as previous page of siteB.com.

Is there any missing part of configuration?

In short, site A > site B linking is not working(there is no page having site A as previous page and there are strange pages used as previous page of site B).

I am struggling with this issue about a month. I eagerly waiting for your help.

Thanks in advance.

4

1 回答 1

1

您使用的代码用于跟踪 iframe。

<a>要在到 siteB 的链接中设置跨域跟踪,请添加

onclick="_gaq.push(['_link', this.href]); return false;"

在此处完成详细信息 https://developers.google.com/analytics/devguides/collection/gajs/gaTrackingSite#multipleDomains

于 2012-08-04T08:00:40.387 回答