Cross-Domain Tracking Urgent Query :-(
-
Hi Mozzers!
One of my clients is having an issue with cross-domain tracking, in other words their own domain is seen as a huge referrer.
When you land on their site, which is www.sunway.ie, and then choose a holiday to book it then takes you to another domain which is www.sunwayholidays.ie, during the booking process.
I'm just wondering if there is a Google Analytics genius out there who may be able to take a quick look and let me know if there is any obvious solution to this within the Google Analytics code?
Thanks in advance everyone!
Gavin
-
Hi everyone,
Many thanks for all of your valuable input, and I think that i might be getting close to a solution!
Would there be anyone out there kind enough to actually take a look at the web sites code for me (even just very quickly) to see if there is anything to suggest, or if I am missing anything?
The issue occurs when you got from this page:
to this page:
Kind regards,
Gavin
-
Hi Gavin,
Chris is right in that what you want to do is set up cross-domain tracking with GA, to pass the referral information between these domains and "close the gap" with your data.
The instructions Chris linked to will help.
I'd just add this: with the combination of the new version of Google Analytics (Universal Analytics) and Google Tag Manager, cross-domain tracking is simple and easy. I highly recommend this implementation, with the caveat that if you have any custom event tracking or other customizations to Google Analytics tracking code, it may break when you move to Universal Analytics and GTM. Instructions are on this page.
The added benefit here: setting up event tracking is also very easy once you're working with the combination of Universal Analytics and GTM.
Best of Luck,
Mike -
Hi Gavin,
that's removing the referral data, what did you want the traffic to be attributed to?
Have you taken a good look through -
https://developers.google.com/analytics/devguides/collection/gajs/gaTrackingSite
or
https://support.google.com/analytics/answer/1033876?hl=en-GB
&
https://support.google.com/analytics/answer/1034342?hl=en-GB
and a walk through if your stuck-
http://www.seotakeaways.com/cross-domain-tracking-google-analytics-works/
hope some of that is helpful.
-
Hi Chris,
Many thanks for that... sounds good BUT I do not want to filter this traffic out altogether. So if I do this then from this point on will referral traffic be re-attributed to their correct sources?
Gavin
-
https://support.google.com/analytics/answer/2795830?hl=en-GB
TA DA!
Add or remove referral traffic sources
This setting is controlled applied in the admin settings of each property in your account. To exclude traffic from specific domains as referral traffic:
Any hostname that contains the string that you add will be excluded. For example, if you add example.com to the list of referral exclusions, another-example.com will also be excluded from your referral traffic.
- Navigate to a property. If you're not in the settings screen, then click Admin.
- Click Tracking Info then Referral Exclusion List.
- Enter the Domain.
- Click Apply to save.
You can also remove domains from the list of exclusions, reintroducing that traffic as a referring source in your reports, by following these steps.
Browse Questions
Explore more categories
-
Moz Tools
Chat with the community about the Moz tools.
-
SEO Tactics
Discuss the SEO process with fellow marketers
-
Community
Discuss industry events, jobs, and news!
-
Digital Marketing
Chat about tactics outside of SEO
-
Research & Trends
Dive into research and trends in the search industry.
-
Support
Connect on product support and feature requests.
Related Questions
-
Google Analytics Goals - Button Tracking
Does anyone know if there is a really easy way to track a button in Google Analytics yourself? It seems that most button click goal setups involve some use of tricky code and I'm wondering if there is a much easier way to do this that will allow us to simply setup and track certain button clicks as goal conversions in Analytics. Your help here is much appreciated!
Reporting & Analytics | | Gavo0 -
Excluding Cookieless Static Content Sub-domain from GA/GTM
For the purposes of this question our ecommerce site url is www.ecommerce.com Our TLD is ecommerce.com We have, following advice from Yslow, Pagespeed and others, moved our static content to a subdomain - static.ecommerce.com We have Google Analytics and Enhance Ecommerce installed, fired from GTM. The cookieDomain setting in GTM is 'auto' At present cookies are being attached to our static resources. What changes do I need to make to to prevent this happening? Many thanks Julian
Reporting & Analytics | | jdeb0 -
How Reliable is the Avg Query Position in GA?
Hi Moz Community, I wanted to know how reliable the average position data is for queries in Google Analytics search console report. I know this report is fairly new this year and the numbers are calculated a bit differently than they were in the old search engine optimization report. I want to know what the biggest differences are between this search console report vs. the old SEO report in GA. I'm also pretty confused about how GA reports on the average position. Obviously it's an average position of whatever date range your choose. But for instance, if your site shows multiples landing pages for one search query will it roll that into the average or just take the landing page that ranks higher? Does the position average take into account video or photo serp results and is this the average across mobile, desktop and tablet? This number has always been a guess since it's sampled data but I want to know how accurate it is. I read this article in 2014 (linked below) but I'm not sure if it all still applies now that that data might be presented differently. https://mza.bundledseo.com/ugc/testing-the-accuracy-of-avg-position-for-search-queries-in-google-webmaster-tools Any answers or discussions would be great here. Thanks
Reporting & Analytics | | znotes1 -
Tracking Organic Traffic and Conversions from multiple TLDs with Google Tag Manager
Hello Guys, I want to track traffic / conversions from different domains (basically same brand - but a lot of different TLD's). The "problem" is that the main conversion which I want to track always happens on the .com TLD and all other TLD's link to there. The problem is, that now the traffic always counts as Referral Traffic, even after setting up cross domain tracking over the google tag manager... So example: Sessions begins on example.co.uk/landing-page11 after User searched on it on google. He decides to buy the product and therefore moves to example.com for the checkout process. No I will have the conversion in my google analytics under referral with example.co.uk. --> but I want to have it under organic, and not under referral. How I can manage this? Thanks for you Help!
Reporting & Analytics | | _Heiko_0 -
How do I set up goals in analytics to track the sales funnel when several pages of the steps required to checkout have the same url?
I have found this in Google Analytic but it makes no sense to me - is there are better resource which explains how you do this step by step ( or a good video perhaps?) Identical URLs Across Multiple Steps In some situations, the URL does not change across a sequence of activity. For example, a sign-up process might have the following URL path: Step 1 (Sign Up): www.example.com/sign_up.cgi Step 2 (Accept Agreement): www.example.com/sign_up.cgi Step 3 (Finish): www.example.com/sign_up.cgi To track visitors' progress through a funnel with the same URL for each step, modify the tracking code to create a virtual URL for each step in the sequence that you want to track. For details on how to use this in your tracking code, see Virtual Pageviews in the _Asynchronous Migration Examples_guide, which shows how to do this in all versions of the tracking code. The following example shows how you might fabricate 3 URLs using the asynchronous tracking code: _gaq.push(['_trackPageview', '/funnel_G1/step1.html']); _gaq.push(['_trackPageview', '/funnel_G1/step2.html']); _gaq.push(['_trackPageview', '/funnel_G1/step3.html']); You would then define your funnel and goal URLs using the ones you created in the tracking code modifications.
Reporting & Analytics | | pookiepro0 -
Need Tips to Track Advertising of Domain on my Car
Hi, I'm working on building a new site. http://www.pilatesboisfranc.com/ I also bought the domain .ca (the business will be in canada) .net .org and .info All the domains are redirect to the .com This site is about my wife new business, a Pilates Studio. We would like to advertise the site on our personal car, using vinyl letters to display the domain name. Is there a way tu use the (.ca) http://www.pilatesboisfranc.ca advertise on my car and track that advertising using Analytics? I know I can use a URL something like http://www.pilatesboisfranc.com/health and track the hit, but using a shorter URL is the key. Can you help? Thank you, BigBlaze
Reporting & Analytics | | BigBlaze2050 -
How do I track comparison shopping engine traffic with keywords?
I want to track comparison shopping engine traffic with keywords in Google Analytics. So, How can I get it done? I am using Google Analytics URL Builder to track traffic which are associated to comparison shopping engine. My product page URL load with following format when some one click on comparison shopping engine. Please, see format of product page URL Now, I have problem with tracking as follow. Please, see this Google Analytics traffic sources screen shot to know more. Comparison shopping engine traffic is going to track with other section and not indicate keyword. I want to track keyword which help me to understand more about my product feed performance. It will help me for better understanding regarding keywords which was searched by my customers to land on my website.
Reporting & Analytics | | CommercePundit0 -
Tracking visits who entered the site via subdomain in GA
Hello, Does anybody know how I can segment visits who entered my site via subdomain? For example: I want to know people who entered via subdomain.example.com/***** and not include people who entered via www.example.com Thanks in advance!
Reporting & Analytics | | A_Q0