Google Analytics Campaign Tracking Pt. 1: Link Tagging

What is Link Tagging?

To track your marketing campaigns Google Analytics uses a technology called link tagging. This provides a fine level of detail about marketing efforts. The data we gather from link tagging helps us make informed business decisions about our marketing spend.

With link tagging, we add additional information to the destination URL used in an ad. The technical name for this additional information is the query string. Here’s an example:
http://www.cutroni.com/landing_page.php?utm_campaign=fall-sale
&utm_medium=banner&utm_source=boston.com&utm_content=text-only

*** NOTE: I moved some text to a second line for readability ***

Everything after the question mark is called the query string. Within the query string we have a number of parameters. Each parameter is separated by an ampersand (&). Pulling apart the above query string we find the following parameters:

utm_campaign=fall-sale
utm_medium=banner
utm_source=boston.com
utm_content=text-only

Each parameter can be further divided into two parts; a variable (the text on the left side of the equals sign) and a value (the text on the right side of the equal sign). Let’s break the above parameters into variable – value pairs:

Parameter Variable Value
utm_campaign=fall-sale utm_campaign fall-sale
utm_medium=banner utm_medium banner
utm_source=boston.com utm_source boston.com
utm_content=text-only utm_content text-only

Ok, stick with me. We’ve gone from a query string, to parameters, to variables and values. Now, let’s start to explain what all of this means. What are the variables and values? I’ll start by explaining the variables:

Variable Meaning
utm_campaign The name of the campaign. Think of this as a bucket. It holds all of our marketing activities. For example, we may be buying some keywords on Google, running some banner ads and sending out an email all to advertise our winter ski sale. However, these three activities are all part of a bigger marketing campaign, our ‘Winter Ski Sale’.
utm_medium I like to think of the medium as the mechanism, or how the message is delivered to the recipient (i.e. email, banner, CPC, etc). What is the ‘distribution method’ that is used to get our message out to our clients?
utm_source Think of utm_source as the ‘who’. Who are you partnering with to push your message. If you’re tagging CPC links the source may be Google, Yahoo! or MSN. This could also be the name of a service that will be pushing banner ads for you.
utm_content The version of the ad (used for A/B testing). You can identify two versions of the same ad using this variable.
utm_term The search term purchased (if you’re buying keywords). This is not always used and is NOT included in the above example.

It’s important to note that you do not always need to use every variable. The core variables are utm_campaign, utm_source and utm_medium. You should always use those three. With Campaign, Medium and Source you’ll reap the most benefit from Google Analytics.

Just to recap, link tagging is the process of adding additional information to the destination URLs we use in our ads. This additional information consists of variables and values.

Here’s the really cool part, the values. The value for each variable is a piece of business information that will end up in Google Analytics. Let me clarify that, you’re actually taking information that is specific to your business, like the name of a marketing campaign, and placing it in Google Analytics. GA will display it, exactly as it is typed, in a series of reports called the Marketing Campaign Results (see Part 3 of this series). This is extremely powerful because you can look at your analytics data through the lens of your business.

So now we know everything about what link tagging is, but what happens after we tag our links?

When someone clicks on a tagged link Google Analytics, using the urchin.js JavaScript, stores all the values in a cookie on the visitor’s machine. That way we can track the traffic generated by each marketing campaign. When a visitor completes one of our goals we can view the marketing activity that drove them to the site.

It’s important to understand that the cookie will persist until 2038. It’s also important to understand that the cookie will be updated with other information. For details about how Google Analytics stores various referral information please see the following post: How Does Google Analytics Track Conversion Referrals?

How to Tag Your Links

The process of Link Tagging is simple. Start by identifying the information that you need to place in the variables. You need to identify the campaigns, mediums and sources that you use in your marketing activities and place it in your destination URLs. Then modify your destination URLs to include the new variables and values.
How do you do that? You can use any text editor, the Google Analytics URL Builder or the special tool I discuss in Part 2 of this series. I’m partial to the special tool :)

Remember, if you’re placing links to your site in cyber-space, you should be tagging them.

Like this post? Share it:


And how about checking out these related posts:

  1. Google Analytics Campaign Tracking Pt. 0: An Overview
  2. Tracking Offline Advertising With Google Analytics
  3. Tracking Dynamic Sites With Google Analytics
  4. Urchin Report for Daypart Tracking
  5. More Urchin Reports for Daypart Tracking

Comments

  1. Georg says:

    I have been thoroughly impressed with all the hints, tips and tricks available in this blog. Thank you so much, this was sorely needed.

    I did have a question though. Is there a way to find out query string parameters from a referral? Meaning that http://www.somesite.com/forum.php may be the referral, but I really would like to see what the request scope parameters were as well, as the URL was most likely http://www.somesite.com/forum.php?post=xyz&foo=bar.

    I look forward to your reply.

    Best Wishes.

  2. Justin says:

    Hi Georg,

    Unfortunately GA will not capture the query string variables in a referral URI.

    Thanks for reading and thanks for the positive feedback.

    Justin

  3. Steven says:

    This documentation is so much more complete and thorough than anything Google provides for this subject.

  4. Justin says:

    Hi Steven,

    Thanks so much for the comment. Honestly, that’s why I do this :) I’m trying to dump everything I know into a book that is written in the same tone and style as the blog. Hopefully that will be out soon (the next few months) and will be very affordable (about $10).

    Thanks for reading and the kind words.

    Justin

  5. Daniele says:

    Hi Justin,
    great article! I had planned a link planned to monitor some newsletter campains and it works great but I got stucked with the ugly-url problem: the querystring definitely ruins the well formed url, hit the usability because the url became longer that the browser input (copy problem by non experience users) and finally sometimes the user copy and paste it around (email, blog, etc..) spreading a false referer.
    I’m testing how I can avoid that; I found a solution using the urchinTracker but require a (non tracked) redirect so it’s not optimal.. any ideas?

    Thank you in advance.

    Regards,
    daniele

  6. Justin says:

    Hi Danielle,

    You can’t really use urchinTracker() to identify referrals. The reason is that urchinTracker() creates pageviews while referral information is visit information.

    It sounds like you need to use vanity URLs with a redirect that automatically adds the campaign tracking query string parameters.

    Hope that helps and thanks for reading the blog!

    Justin

  7. Daniele says:

    Hi Justin,
    thank you for the reply. Of course urchinTracker use is not-so-good: I can read the referer as pageviews but of course this is a weak solution because it losts the ability to segment and cross the data in the analytics way.
    Redirect seems the most logical way but it has to be done in client side (and I don’t like that) and then you have to worry about counting two times the second views, so you have to implement a way to sniff the redirect and omit tracking it.
    By the way I have to *remove* the querystring, not add it. The problem is not the compless link on the mail (often hidden) but the url that stay in the browser url location after the user click on it.

  8. ziggy says:

    >>Unfortunately GA will not capture the query string variables in a referral URI.

    Sure they can, but you have to setup a custom filter. Google it and you’ll find it. I set it up a while back. The only pain is when you go to referrals and then your custom variable, the GA page doesn’t have links and long links are cut off so you have to view source and copy and paste to visit any site.

    Why doesn’t google clue into this obvious need???

    And why don’t they compress the js code, it’s so obvious too, no one is reading it.

  9. Joe says:

    If I tag a link without the source, will the referring domain register
    in the reporting data?

    For example,

    http://www.mysite.com/?utm_medium=banner1&utm_campaign=promo1

    Instead of,

    http://www.mysite.com/?utm_source=external&utm_medium=banner1&utm_campaign=promo1

    The reason I want to do this is that I may not know who the source is
    (I’m passing the code around in a viral campaign), and I’d rather GA
    “automatically” pick up the domain/source, but where I can still
    customize the medium and campaign tags so I know which banners are being clicked and how often.

  10. Justin says:

    Hi Joe,

    If you leave off the utm_source variable then the GA tracking code will automatically identify the link as a referral. It will override the values that you enter for campaign and medium.

    Is it possible for you to add some JS to the link you provide? If you could dynamically add document.location to the utm_source variable then you can get the data that you want. The key is to add some script that does document.write(‘utm_source=’+document.location) or something like it.

    Hope that helps and let me know if it works.

    Thanks for reading the blog and thanks for the question.

    Justin

  11. Joe says:

    Thanks, I got that to work… kinda. For others, I posted the code below.

    But when I go into GA, I get 0 for visits. Literally, the # 0 shows up. I’m not sure how that’s possible! But I don’t think it’s particular to this javascript approach. I’ve seen other instances for normal tagged links where the visit count is 0. Is this a “first visit” thing, or is the code not catching properly?

    Thanks,
    Joe

    The javascript code I used:
    document.write(““);

  12. Kapeel Mopkar says:

    I am not sure if this is possible but can we pass anything unique to a particular page, as argument to urchinTracker()?

    My requirement actually is that I want to check which the username/userId visited a particular page…

    Is it possible in GA?

  13. Justin says:

    Hi Kapeel,

    Whatever value you pass to urchinTracker() will become a pageview. But be careful. It is against the GA TOS to send any PII to Google Analytics.

    Justin

  14. Chris says:

    GA does not seem to track all visits correctly when the utm_X parameters are sent along with POST data.

    works often, but not always. Possibly the Internet Explorer 6 fails to comply here… any ideas?

  15. Chris says:

    I noticed that google uses the campaign names from the adwords account when auto-tagging is on. Since we track other campaigns, we have been using the utm_campaign field to identify engine, campaign and adgroup, and then parse the data in excel. We would like to do this with google as well (since there is now way to pull a report out of GA with all adgroups (have to drill down into each campaign.

    I know that you CAN tag Google with the GA parameters, but do we have to then turn off autotagging? Even if we do this, will GA replace the campaign names it currently grabs with the utm_campaign values we set?

    Thanks,
    Chris

  16. Justin says:

    Hi Chris,

    I havenot heard of that problem. Also, I’m not sure why you would need to pass the campaign tracking parameters via a POST. The campaign parameters are only meant to be present on the initial landing page. Then the values are stored as cookies on the visitor’s machine.

    If you’re talking about cross domain tracking then it’s probable that the third party site is stripping off the query string parameters.

    Thanks for the question sand thanks for reading.

    Justin

  17. Justin says:

    Hey Chris,

    To answer your second question, YES. If you want to manually tag your AdWords links then you must turn off auto tagging. Once you turn off auto tagging and manually tag your links, GA will pull in the value that you specify in utm_campaign.

    Thanks for the question.

    Justin

  18. Vic says:

    thanks for the great writeup. very clear. I think I understand how GA will track clicks on a given campaign. I recently started a website & am looking to sell banner ad space on the site. Can I use GA to track the ads that I run on my site? Can I track impressions of the banners using GA tagging or can it only track clicks?
    If not, is there something you can recommend for tracking the ad’s impressions?

  19. Hi Vic,

    To track banner impressions you’ll need to hack something together using urchinTracker. You’ll need to create a pageview every time an ad is displayed. You can learn about urchinTracker in this series of posts.

    A better solution will be to use event tracking when that feature is released.

    Thanks for reading,

    Justin

  20. Anyone else who’s using GA event tracking to track banner impressions, I’d love to hear how you are doing it too. I’d really like to compare GA analytics figures versus my ad management solution to get a feel for the differences.

  21. Hi Tim,

    I think a lot of people are going to use event tracking to track ad impressions. Because the event data model is so flexible you should be able to track a substantial amount of data.

    Thanks for reading and thanks for the comment.

  22. Nick says:

    Hi Tim
    We currently have a number of banners set up on affiliate sites. Im hoping to be able to set up funnels from each of these to track the amount of custom from each of these. We are unable to add the tracking code to the actual page but could add this to the banner. Is this as simple as simply adding the tracking code to each of the banners?
    Also congratulations on the help you’re providing it’s a great help and is much appreciated.

  23. Rich says:

    Can someone clarify if GA sometimes does not pick up certain utm_xxx variables, even if they are in the links I’m using?

    We are usng redirects from “friendly” URL’s (mydomain.com/VALUE) to the long URL with both the utm query string, plus some other aspx parameters of our own.

    GA seems to pick up the utm_source, but NOT the medium and campaign values.

    Can anyone explain?

  24. Hi Justin;

    I wonder what the “best” approach would be to track referrals from shopping comparison engines such as Nextag or shopping.com. I can tag the landing page URLs. This is what I am using:

    campaign: NexTag
    medium: shopping engine
    source: product_id

    Of course if I have lots of products I end up with lots of sources in GA. Or should “NexTag” be the source?

    There may be no right or wrong here, so am just wondering what approach other people are using.

    Many thanks,
    Michael

  25. Rich,

    Not sure there is an easy solution to the problem that you describe. It could be that your server is using a delimiter other than the ampersand. I would check the cookies on your machine. Navigate to the landing page and after it redirect you look at the cookies. You should see a cookie named _utmz and it should contain all of your link tagging values.

    Hope that helps and thanks for reading.

    Justin

  26. Hi Michael,

    First, always a pleasure to hear from you.

    I like the approach that you’re taking with the affiliate tracking. You’re capturing all of the data in a logical way.

    I really think that the best practice is capturing the data in a structure that works with the GA reporting. You’ve done that very well.

    With that said I think there a couple of small tweaks you could potentially use.

    First, if this is an ongoing marketing campaign, that you want to group with other ongoing marketing activities, you may want to change the utm_campaign value.

    Second, you may be able to take advantage of the utm_content parameter to capture even more information. But this depends on the shopping engine and the data they let you track.

    Again, you’ve got a great setup, and if it’s workig for you I would not change a thing.

    Thanks for reading,

    Justin

  27. AJ says:

    Will Google Analytics be able to track a referring url if there is no click invloved from that URL.

    Meaning, what if a site uses redirect code, would GA be able to track that redirect as it would a click from that URL.

    Thanks!
    A.J.

  28. Joe Kamenar says:

    Greetings,

    I have a question about tracking visits from email campaigns. When I see traffic sources in GA that have the word “mail” in them, as in the examples below, does this mean they were visits from clicks on the email that they opened? If not, what would these be, and how do I track email visits to the various links on the site (3 links in the emails).

    Examples:
    us.mg2.mail.yahoo.com / referral
    by114w.bay114.mail.live.com / referral
    netmail.verizon.net / referral
    bl108w.blu108.mail.live.com / referral

  29. Matt says:

    Does this syntax still apply with the new GA.js Tracking Code?

  30. Hi AJ,

    It depends. Referrals can, and often do, break GA’s ability to track referrals. It all depends on the type of redirect that is implemented. In general, HTML and JS redirects don’t work well with GA while server redirects preserve the true referral information.

    Hope that helps,

    Justin

  31. Hi Matt,

    Yes, the campaign tracking syntax still applies even if you’re using the new ga.js tracking code.

    Justin

  32. Joe,

    To track an email campaign you must tag the links in the email that you send out. If you do not tag the links the Google Analytics will not know that the visitor clicked on a link in an email.

    If you do not tag your links, and the visitor uses some type of web mail application, like GMail, then the traffic will appear as a referral. That’s why tagging links is so important.

    Justin

  33. Alex says:

    Hi Justin! Your provide very useful info here!

    I have a customer for which I have created a newsletter that contains a link to the customer’s website.

    I would like to track how many times this link is clicked. For this I was going to use GA link taging.

    The problem that I have is that I do not have access on the customer’s website and therefore I cannot install the script that is provided by GA for tracking.

    My question is: What shall I do to track the link in the newsletter without having to add any code in the customer’s website?

    Will tracking work if I just track the link using GA tags?

    Which domain name should I use if I follow this solution?

    If the link is clicked twice by the same newsletter reader, will GA count it twice?

    Sorry for the loads of questions and many thanks in advance!

    My question

    The newsletter contains a link that I

  34. Hi Alex,

    Link tagging will only work if you install the GA tracking code on the site. If you’re interested in just tracking clicks on the links in the email then you may want to check the metrics that the email vendor provides. Many email tools will track basic pre-visit metrics, like bounces, # messages delivered, clicks, etc.

    Hope that helps,

    Justin

  35. Justin this site is amazing!

    I have 2 quick questions I hope you can help me with.

    I understand link tagging (which i will be using) but I would like to track impressions of these links (actually banners) I have heard and seen people do this, but I cant find anywhere! Im not savy on coding myself so Id need it explained or given to me.

    So basically I would like to be able to track impressions of a banner on my site and the clicks so I can calculate the CTR.

    2.

    Is there a feature of custormizing the actually GA account? Aranging data or layout to how you want it? Making your own pages to store cetain data on etc?

    Thanks again

    Matthew

  36. Hi Matthew,

    Glad you like the site. :)

    1. Tracking impressions can be done, but it’s definitely more of a hack than anything else. You can generate pageviews every time an impression happens, and then create a pageview every time a click happens. Then the two numbers can be used to calculate CTR.

    You can read mroe about tracking clicks with GA in this series of posts.

    2. There is no way to customize the GA interface. Unfortunately what you see is what you get.

    Thanks again for reading,

    Justin

  37. Tom Walsh says:

    Hi Justin,

    I’m using the following as a redirect from a vanity URL to a web page to track the effectiveness of print advertising…

    meta http-equiv=”refresh” content=”1;url=/index.php?main_page=product_info&products_id=141&utm_source=testmagazine&utm_medium=print&utm_campaign=testmagazineflexflash”

    When I look at my analytics I see that the tags show up as source, medium and campaign but they all have zero values for visits, time, etc. The vanity is url h-b.com/flexflash

    Any idea what the problem is?

  38. Tom Walsh says:

    After looking through my reports I found that GA is seeing the landing page as /index.php rather than

    /index.php?main_page=product_info&products_id=141

  39. Tom,

    It looks like you have everything set up correctly. I tried the link and my GA cookies were set correctly. The only thing I can think if is that the GA cookies are getting set, and then, for some reason, you’re UPDATING the cookies with the redirect happens. I’ve seen this cause campaigns, mediums and sources have 0 vistis. I would make sure that the no GA code executes before the redirect.

    Hope that helps, and thanks for the comment.

    Justin

  40. Hi Justin,

    I see your reply comment to Matt on June 25th that the same syntax works on the new ga.js. I am a bit confused by this…For example, I thought that:

    utm_campaign=fall-sale

    was suppose to be

    pageTracker._setCampNameKey(“ga_campaign”);

  41. Craig,

    The code that you reference is only if you want to rename the query string parameters that GA uses to track campaigns. _setCampaignNameKey doesn’t have anything to do with the _value_ of the query string parameter, it literally changes the name of the query sting parameter. It tells GA that you will be using a query sting parameter names ga_campaign and not utm_campaign.

    Hope that clarifies things,

    Justin

  42. Jz says:

    We have been tracking our internal site traffic using _utmSetVar on our different page banners (homepage, cartpage, category page).
    The information then shows up in the Visitor Report/ User Defined. Thus limiting the amount of reporting I can provide our marketing team.
    I have requested that we tag the Linking URL with utm_source=homepage&utm_medium=banner&utm_campaign=freegift
    however; I am being told that doing this causes 2 different URLs for one page. And when indexed by Google it causes problems with our page rankings.
    I have a couple of questions–
    Does this really cause there to be 2 identical pages to be indexed by Google?

    Why are we told by GA that this is the way to track campaign efforts if it causes our page ranking to go down?

    What other method of tracking would you recommend?

  43. JZ-

    Link tagging should not be used to track internal banners or other promotions. While I don’t know if the internal link tagging will affect your page rank, I do know that it will not increase the number of pageviews. Another result of using link tagging to track internal promotions is that you will see campaigns NAMES in your reports, but those names will have 0 visits.

    Thanks for the question and I hope that helps.

    Justin

  44. Jz says:

    Thank you for the quick answer. How would you recommend we track internal banners.
    (We have vendors that pay for spots on these banners and they would like us to track which pages they visit on our site)

    Thanks,
    Jz

  45. JZ,

    You may want to try and capture the click by creating a “virtual pageview“. However, this can be very difficult based on the ad serving platform and your ability to add JavaScript to the ad platform.

    Hope that helps,

    Justin

  46. emsketch says:

    Thank you so much for taking the time to write such great content about link tagging in emails. This is much more informative than what I have found elsewhere. However, I do have a couple questions that I hope you can shed some light on:

    1. Are there any ethical implications in tagging links in an HTML email? That is, does any private or identifying information get
    collected from the user that clicks on it?

    2. Will tagging a link in an HTML email cause spam filters to block the email from the user’s Inbox?

    Thanks again for sharing your expertise on the subject!

  47. Hello,

    How do you tag email campaigns thru GA, if you are using another email campaign company that already tracks the the path. We would like to have it tracked thru GA all the way thru path of purchase (goal page)?

  48. emsketch:

    1. According to the GA terms of service you can not use GA to collect any PII. This means that adding an email address to the link tagging parameters is a big no-no.

    2. The link tagging should not trigger spam filters.

    Jason: To track your emails with GA you can tag your links using the method in this post. I’ll write something that’s more explicit for email soon.

    Thanks for the questions.

    Justin

  49. Laura says:

    Hi,

    I haven’t had the time to take a look at all the posts. I know someone already asked: how do you use event tracking to track banner impressions? But I didn’t really get the answer.

    Could someone give me a “for dummies”-answer pls?
    Now we use Tradedoubler to track impressions, but I’d like to use GA for everyting.

    Thanks a lot!

    Laura

  50. Laura,

    Event tracking will let you track the clicks on ads. That’s pretty much all there is to it. Depending on the implementation, the reporting will let you see which ads were clicked on and which pages people were on when they clicked on an ad.

    Unfortunately you may not be able to use event tracking to track ad clicks. It all depends on the ad serving platform and your access to the code.

    Hope that helps,

    Justin

Trackbacks

  1. [...] Google Analytics Campaign Tracking Pt. 1: Link Tagging [...]

  2. [...] In Part 1 of this series I explained that Google Analytics campaign tracking is based on a technology called link tagging. Link tagging is the process of adding business information to the URLs that we use in our on-line ads. But how do we actually tag these links? Some marketing campaigns can have hundreds, or thousands, of destination URLs. Google has provided a tool for us called the URL Builder. It’s great if you only have one or two links to tag, but it can’t handle hundreds of links. [...]

  3. [...] In Part 1 of this series I explained link tagging, the technology that Google Analytics uses to track on-line marketing campaigns. In Part 2 I discussed how to tag your links and posted a tool that I use to quickly tag large numbers of marketing URLs. Today, in Part 3, I’ll start to pull this whole thing together by walking through a very basic analysis. [...]

  4. [...] In Part 1 of this series I explained link tagging, the technology that Google Analytics uses to track on-line marketing campaigns. In Part 2 I discussed how to tag your links and posted a tool that I use to quickly tag large numbers of marketing URLs. Today, in Part 3, I’ll start to pull this whole thing together by walking through a very basic analysis. [...]

  5. Google Analytics at a Glance…

    How Does Analytics Track Conversion Referrals? Visitor campaign information is stored in a cookie on the visitor’s machine. This cookie stores the referral information for the visitor’s session. This cookie tracks organic referrals,……

  6. [...] Tracking Adwords and other ppc click results Paid Search SEM UncategorizedA passage I like very much on how to using analytics to track your advertise from difference sources using link tagging: http://www.epikone.com/blog/2006/11/10/google-analytics-campaign-tracking-pt-1-link-tagging/ [...]

  7. [...] Analytics Talk » Google Analytics Campaign Tracking Pt. 1: Link Tagging (tags: google+analytics) [...]

  8. [...] Google Analytics Campaign Tracking Pt. 1: Link Tagging [...]

  9. [...] By the way, make sure you configure your analytics app correctly to segment email traffic from other sources. This usually means tagging the links in your email. [...]

  10. [...] Remember, the values of Campaign Medium and Campaign Source can have a default value (like organic, referral or direct) or a set value that comes from the utm_medium and utm_source parameters used in link tagging. You can read more about link tagging in a previous post I wrote. [...]

  11. [...] The key to measuring the effectiveness of an email offer is identifying how many conversions occur. Measuring email conversions is pretty easy with Google Analytics. It all starts with link tagging. If you’re unfamiliar with link tagging then you may want to take a moment and review how it’s done. Testing emails with GA starts with creating different variations. Once the variations have been created you need to tag the emails so GA can identify each one. [...]

  12. [...] You can see that the name value pairs look very similar to the parameters we use for link tagging. Just by looking at the above cookie you can figure out that the visitor performed an organic search on Google for the term ‘google%2Banalytics%2Bshortcut’ or ‘google analytics shortcut’. That’s the type of information that we want to put in hidden form fields and send back to the server. [You can learn more about the __utmz cookie in the reference section below.] [...]

  13. [...] Campaigns: links that you have tagged with campaign information [...]

  14. [...] (For an alternative description, see Google Analytics Campaign Tracking Pt. 1: Link Tagging.) [...]

  15. [...] Name the filter. Choose “Custom” from the Filter Type drop-down menu. Click the “Include” radio button. Choose “Campaign Medium” from the Filter Field drop-down menu. Type “cpc|ppc” as the Filter Pattern. The “pipe” character is part of a regular expression that means “or”. For this feature to track your Google Adwords paid traffic correctly, Auto-tagging much be turned on in Google Adwords. Linking your Adwords and Analytics accounts will enable Auto-tagging. For it to work with other paid search platforms, you must use link-tagging. [...]

  16. [...] All About Google Analytics GoalsJustin Cutroni on All About Google Analytics GoalsJustin Cutroni on Google Analytics Campaign Tracking Pt. 1: Link Tagginghostmaster on All About Google Analytics [...]

  17. [...] cookie is named __utmz, I’ve talked about a few times, in my series on Campaign Tracking and my post on GA – CRM integration. __utmz always stores where the visitor came from (organic [...]

  18. [...] Google Analytics Campaign Tracking Pt. 1: Link Tagging [...]

  19. [...] Unfortunately, Yahoo and Mircosoft do not automatically tag paid keywords so the only way to track keywords is to tag them yourself. I know it sounds like it may take up the rest of your day, I assure you it is not as bad as it sounds. The first step is to go to the Google URL tool builder and make a tag for your keywords. If you would like some general information on how to tag links with the URL builder visit this blog post at Anayltics Talk. [...]

  20. [...] 延伸閱讀: Google Analytics Link Tagging 101 Google Analytics Campaign Tracking Pt. 1: Link Tagging [...]

  21. [...] Google Produktsuche kommen, erfasst jedoch nicht die Conversions. Es gibt aber eine Lösung über Link-Tagging, die den Filter überflüssig macht. In der Praxis funktioniert das [...]

  22. [...] (For an alternative description, see Google Analytics Campaign Tracking Pt. 1: Link Tagging.) [...]

  23. [...] (For an alternative description, see Google Analytics Campaign Tracking Pt. 1: Link Tagging.) [...]

  24. [...] cookie 的键是__utmz,我之前多次提到过它,在我的系列文章来源跟踪和文章 Google Analytics 与 CRM 整合里。__utmz [...]

  25. [...] first step is to go to the Google URL tool builder and make a tag for your keywords. This post at Analytics Talk is a great starting point if you need more information. After you get a feel for tagging [...]

  26. [...] Analytics, all you have to do is add in a couple parameters to the URL, there are some instructions here and [...]

  27. [...] Google Analytics Campaign Tracking Pt. 1: Link Tagging – Part 1 in my series about Google Analytics Campaign Tracking. Please note, I’m in the process of moving my blog to Analytics Talk. All new content will be posted there. Google Analytics Campaign Tracking Pt. 1: Link Tagging. Thanks! [...]

  28. [...] dat Typhone op zijn minst op de hoogte is van de campagne, omdat de resultaten van de campagne gericht via Google Analytics worden [...]

Speak Your Mind

*