Author: David Vallejo

  • Release: Google Tag Manager Debugging Extension

    Today is a big day!, I finally managed to put some of my internal debugging snippets within a single Chrome Extension and I’ve just released it on the Chrome Webstore so everyone can try and use it.

    To install it you will need to visit the extension page on the Google Chrome Webstore, you can there just clicking on the screenshot below:

    NOTE: The first time you open the extension panel. It may be show an empty report, just click F5 to start seeing data. This will be fixed on next release.

    The extension focuses on debugging Google Tag Manager implementations ( most information reported is related to dataLayer information ), and it does also offer some information about Google Analytics hits being sent from the current loaded page ( ok folks:  only Universal Analytics is supported, if you’re using the legacy GA library (ga.js) please give your implementation/client a bit of love and upgrade to Universal Analytics ).

    The current extension release provides the following information:

    • dataLayer pushes list ( including some profiling details, like the time passed between pushes )
    • Current push details and current dataLayer model status for each dataLayer push
    • Google Analytics hits sent by the current page.

    Along with the pieces on info abouve the following features are available:

    • All dataLayer pushes are shown in a prettified way, so they are more readable and easy to use.
    • You can individually copy to the clipboard any push details in a formatted way ( useful for when making documentation for clients )
    • Hits payload are shown in a prettied and formatted way, making the debugging even  easier.
    • You can filter the hits by the UA property ( great for when you’ve some big implementations sending hits to different properties )
    • You can filter the hits by the type ( event, timing, pageview, etc )
    • You can see the details about how each GA hit was sent, using GET, POST, or if it was sent using image or beacon transports
    • You can easily view the current hit payload size and if it contains any Enhanced Ecommerce Data

    The current GTM Debug Extension is somewhere between Alpha and Beta stages, so don’t be so hard with it. I’m already aware of it having some weird behaviour over some websites and it would be really helpful if you could take 5 minutes to report these bugs to me. I’ve opened a Google Group in order to be able to get feedback and bugs reports.  You can find it on the following link: https://groups.google.com/forum/#!forum/gtm-debugger-extension

    If you are working on a client website and want to expose the website, you can reach me through twitter or use this website’s contact form :).

    Looking forward for your comments in order to improve the extension! πŸ™‚

    Install Extensionhttps://chrome.google.com/webstore/detail/gtm-debug/ilnpmccnfdjdjjikgkefkcegefikecdc

    Extension Screenshots

  • Proper method/tips for setting up Facebook Pixels with no errors

    I’m finding a lot of people lately complaining about their Facebook Pixels throwing an infamous “duplicate pixel” error:

    fbevents.js:9 Facebook Pixel Error: Duplicate Pixel ID: XXXXXXXXXXXXXXXXX

    This  error is thrown because we’re trying to initialize a pixel ID twice and therefore FB complains about it. And nope you are not alone πŸ™‚

    For example you may have a FB pixels that fires on the page load like this:

    fbq('track', "PageView");

    And then you may have another Add To Cart event like this:

    fbq('track', 'AddToCart'
       , { 
        brand: 'Apple',
        sku: 'MN4L2LL',
        content_ids: 'JET BLACK',
        content_name: 'Iphone 7 Plus',
        content_type: 'product',
        value: '1130.33',
        currency: 'EUR'
    });
    fbq('init', 'MY_FB_PIXEL_ID');
    fbq('track', 'AddToCart'
       , { 
        brand: 'Apple',
        sku: 'MN4L2LL',
        content_ids: 'JET BLACK',
        content_name: 'Iphone 7 Plus',
        content_type: 'product',
        value: '1130.33',
        currency: 'EUR'
    });
    
    

    The code above will show that ugly error into your browser console, despite you didn’t do anything really bad at all. ( I don’t really get why the FBEvents.js doesn’t just silently ignore the init if the pixel Id is already initialized :X )

    This said, let’s explain how Facebook Pixel works:

    As you can see each ‘init‘ method call, puts that pixel id into an internal array. And then each track call will loop through that array firing a hit for each already “initialized pixel id” on it.

    Yep, this means that after a pixel has been initialized any call to the “track” or “trackCustom” method will forcedly be sent for all current initialized pixels !! Meaning that you won’t be able to control which pixels should be sending the current action. I can’t really understand why each pixel doesn’t own their own namespace to have a better control.

    Now let’s see which would be the best way to setup our Facebook Pixels using Google Tag Manager.

    1. One that that is going to take care of initializing all our Facebook Pixels.

    2. On each different action we want to track on FB (eg: “Add To Cart”, “ViewContent”). We’ll be adding just the method call, since the main library an object are already in place! 

    Techie Fix Alternative

    Another way of fixing this error is checking if the current pixel we’re using is already initialized before calling the “init” method. As usual some coding may help us, we can check it using the following JS snippet:

    if (window.fbq.__fbeventsModules.fbevents().getState().pixels.map(function(pixel) {
            return pixel.id;
        }).indexOf('MY_FB_PIXEL_ID') == -1) { // PIXEL NOT INITIALIZED. DO YOUR STUFF }
  • Release: Tealium Debugger extension for Chrome

    I know … It’s been a while since my last post, but I’ve been saving myself for something big. Over the last months I had the chance to run a big migration from Google Tag Manager over Tealium that had taken most of my time.

    Along with this extension release I want to say that I might start a new series of blog posts related to Tealium, based on my experience with this Tag Manager System.

    One of the biggest problems I had when working with Tealium, is that debugging it was some kind difficult, specifically when talking about the utag.link calls . So I coded a extension for Chrome that was throwing all the debug info I needed to the browser console in order to make my daily work easier.

    This past week I decided that I was going to release it, since I think it could be useful for some other people. So I spent the last week building a new UI for the Tealium Debugger instead of having to swin around all that flood of console debug output.

    Extension Features:

    Pretty print of UDO data and data pushed via utag.link calls.

    You’ll be able to easily check the values types. Inclusing the arrays values preview when hovering them ( there’s no need to expand them to view what data they hold)

    Keep navigation data

    The extension will kept the previous visited pages data in place

    All data related to current loaded Tealium enviroment

    You can easily see what account, profile and enviroment had been loaded for the current page. And of course the publication time for the current profile.

    [BETA] – View which tags had been fired

    You will be able to check which assets/tags had been loaded through tealium for each visited page. This feature is currently in Beta, and it’s likely going to be improved in a future.

    Please have in mind this is my very first Chrome Extension and that it may be buggy or it may not be working fine for some websites. If it’s not working for your site please let me know so I can take a look to it. And of course any feedback will be gratefully welcomed.

    Tealium Debugger Extension: INSTALL IT

  • Integrating Google Optimize with Google Tag Manager

    You may need to know if the current page has any Google Optimize Experiment running, to track that info on any tool, or to fire some vendor tag based on the current experiments statuses.

    The following snippet will take care of sending a dataLayer push if there’s any active experiment running, including:

    • The Experiment ID
    • The Optimize Container ID where the experiment is running on
    • The current experiment variation being shown to the current user/device
    (function() {
        for (var gtm in window.google_tag_manager) {
            if (gtm.match(/^GTM/)) {
                if (google_tag_manager[gtm].experiment) {
                    dataLayer.push({
                        'event': 'optimize-experiment-active',
                        'optimize-container-id': gtm,
                        'optimize-exp-name': google_tag_manager[gtm].experiment.split("$")[0],
                        'optimize-exp-variation': 'Variation: ' + google_tag_manager[gtm].experiment.split("$")[1]
                    });
                }
            }
        }
    })();

    Then just create the needed dataLayer type variables to read the pushed data and use it on your tags/triggers.

    The dataLayer push will look like:

    {
        event: "optimize-experiment-active", 
        optimize-container-id: "GTM-XXXXXX", 
        optimize-exp-name: "GTM-XXXXXX_OPT-YYYYY",
        optimize-exp-variation: "Variation: 1"
    }
  • SEO meets GA: Tracking search bots visits within measurement protocol

    I’ve been attending lately (and having) to some talks about the logs parsing from the SEO perspective, (from @David Sottimano on Untagged Conference and Lino UruΓ±uela during some dinner time), and I’ve decided to publish a WordPress plugin that I started to work on some years ago, and that for work reasons I had it left on my “I’ll do it” drawer and it never came back to my mind.

    First thing I need to the point to, is that this is a BETA PLUGIN, so please careful of using it on a high load trafic or on a production site. I’ve running on this site for 4 days without any problems, but that doesn’t mean it’s free of bugs. Let’s consider this plugin for now as a proof of concept.

    The main task of the plugin is to register the search bots visits to our wordpress site into Google Analytics, using the Measurement Protocol.

    The working flow of the plugin is easy, it just checks if the current visiting User Agent is matching any known Crawler, and based on that info we’re sending a pageview to some Google Analytics Property. Please take in mind that it’s recommended to use a new property since, we’re going to use a lot of custom dimensions to track some extra info beside the visited pages =)

    I used to had my own User Agents parser, but I ended using another well stablished (and for sure more reliable) library. When something works there’s no need to reinvent the wheel :). So this pluggin uses the PHP library for the uap-core project.

    Let’s see a simple flow chart about what the plugin does:

    I’m sure this was easy enough to understand. But don’t only want to check what pageviews were visited by a search bot, no we’re going further and we’ll be tracking the following:

    And for sure you may find replies to a lot of more questions, since we’re using Google Analytics to track those visits, we’ll able to cross any of the dimensions at our needs.

    Another cool thing of tracking the bots crawls within the Measurement protocol, is that we’ll be able to watch how our site is being crawled in the real time reports! πŸ™‚

    Setup

    You’ll just need to download the plugin zip file from the following url, and drop it in your WordPress Plugins folder and configure the Google Analytics Property ID to where you want to send your data.

    Used Custom Dimensions

    You may be wondering why do we have the same bot info related dimensions duplicated and with a different scope, this is why because as I explained before we’re using the bot IP address to build up a clientID and an userID, and it may happen that Google uses the same ip for different bots (like for Desktop or Featured Phone). This way we can have the hit level info too in the case that user scope data get’s overriden πŸ™‚

    Another thing we may want to do, is to setup the session timeout limit to 4 hours within our profile configuration. Bots Crawls are not done the same wht as an user navigates the page, and we may be getting 2 pages hits per hour, so the default 30 minutes timeout makes not sense at all.

    Let’s know see how the reports will look on Google Analytics πŸ™‚

    Consumed content by bots with an hourly breakdown

    Total sessions and pageviews by search bot

    Pages that returned an 404 and which bot was crawling it

    Which pages did a certain bot crawled (User Explorer Report)

    You can get the plugin from the following GitHub repository:
    https://github.com/thyngster/wp-seo-ga

    If you are unable to run the plugin, please drop me a comment on this post or open an issue on GitHub and I’ll try to take a look to it.

    Any suggestions/improvement will be very welcome too πŸ™‚

  • Cross-Domain tracking with clean urls

    I’ve been told by a lot of clients that the way that Google Analytics cross-domain tracking works is “ugly”, referring to having the linker param attached to the URL.

    I must admit is not elegant having all that long hash on the url, thougt it won’t affect the page functionality. In the other side there isn’t any other to pass the current client Id from the Universal Analytics cookie to the destination domain without dealing with server-side hacks (we can’t not read POST data in JS ,yet).

    Browsers have the History API . Which holds the current user navigation history,allows us to manipulate it and is widely supported by browsers:

    history api support by browser

    If you ever dealed with an Ajax based website, I’m sure you have noticied that even if the page does not reload, the url gets changed.

    The history API does allow us to play with the current user session history, for example:

    window.history.length

    The above line will return the number of elements in the session history, if you have browse 4 pages in the current it’ll return 4.

    window.history.back()

    Will return the user back to the previous page in the session.

    But we’re going to focus on the pushState and replaceState methods. Those ones will allow us to add a new entry to the history record and will allow us to change the current page pathname without needing to reload the page.

    I bet you’re guessing that we’re going to strip out the _ga parameter with those functions and you’re right. This won’t be harmful for the crossdomain tracking since we’re going to do it after the Google Analytics object has been created so it won’t affect our implementation but we’ll end showing the user a cleaned up URL after Google Analytics does all it’s cross-domain tracking magic.

    We’ll using the “replaceState” in this example, to avoid users clicking on back button to be sent to the same. This method will just change the URL but WON’T add a new entry to the session history.

    To achive this hack, we’ll be using the hitCallback for our Pageview Tag on Google Tag Manager.

    In first place, we are going to need a variable that is going to take care of reading the current URL, cleaning it up, and manipulating the browsers URL using the History API.

    I’m calling it “remove _ga from url pushState” , feel free to name it at your convenience:

    function(){
      return function(){
          if (document.location.search.match(/_ga=([^&]*)/)) {
              var new_url;
              var rebuilt_querystring;
              // A small function to check if an object is empty
              var isEmptyObject = function(obj) {
                  var name;
                  for (name in obj) {
                      return false;
                  }
                  return true;
              }
              // Let's build an object with a key-value pairs from the current URL
              var qsobject = document.location.search.replace(/(^\?)/, '').split("&").map(function(n) {
                  return n = n.split("="),
                  this[n[0]] = n[1],
                  this
              }
              .bind({}))[0];
              // Remove the _ga parameter
              delete qsobject['_ga'];
              // Let's rebuilt the querysting from the previous object with the _ga parameter removed
              var rebuilt_querystring = Object.keys(qsobject).map(function(k) {
                  if (!qsobject[k]) {
                      return encodeURIComponent(k);
                  } else {
                      return encodeURIComponent(k) + '=' + (encodeURIComponent(qsobject[k] || ""));
                  }
              }).join('&');
              // We want to if the current querystring was null
              if (isEmptyObject(qsobject)) {
                  new_url = location.pathname + location.hash;
              } else {
                  new_url = location.pathname + '?' + rebuilt_querystring + location.hash;
              }
              // Use replace State to update the current page URL
              console.log(new_url);
              window.history.replaceState({}, document.title, new_url);
          }
        }
    }

    Now we only need to add this new variable as the hitCallBack value for our pageview tag:

    So this is what is going to happen now:

    1. Google Analytics Object will be created
    2. It will process the linker parameter, overriding the current landing domain clientId value as long as the linkerParam value is legit
    3. After that the current page URL will be changed for the same URL but with the _ga parameters stripped out.

  • Bringing back utm_nooverride functionality to Universal Analytics

    Universal Analytics removed the utm_nooverride=1 functionality, still we can define a list domain referrals to be treated as direct visits within our properties configuration section, but what about when we can’t control the source domains?, for example for emailings, or some display campaign that we don’t want to override our users original attribution?.

    We’re going to use Google Tag Manager, so bring back this functionality to our implementations.

    First we need a Variable to read if is there a querystring parameter named utm_nooverride and that it’s value.

    Ok, this variable will hold the value “1” when the utm_nooverride parameter is present. Now we’re going to use it to force the “dr” (document referrer) parameter just under that situation.

    For that we’re going to need an extra Custom JavaScript variable with the following code on it:

    Let’s be lazy!, you can copy this little piece of code below:

    function(){
      if({{QS - utm_nooverride}}=="1"){
          return document.location.origin;
      }else{
          return document.referrer;
      }
    }
    

    We’re almost set, now we want to force our pageview tag to use this last created variable for the “referrer” field.

    We’re done!, now if the utm_nooverride parameter is present on the landing page, Google Tag Manager will send the current domain name as a referrer, forcing that new visit to be threated as direct traffic.

    UPDATE: I don’t recall if the override had preference over campaign parameters, if you know about it, please drop a comment :). Else I’ll be checking it on the next days.

  • #Tip – Finding out if a key-value has been already pushed into the dataLayer

    Sometimes we may be in the situation that we need to know if some info had been already pushed into Google Tag Manager’s dataLayer in order to take some action. For example we may need to know if some custom event it’s already in the dataLayer in order to prevent something to be fired twice, or we may need to check if some value is already in place.

    The following snippet, will help us to know that info, looping thru all the dataLayer pushes and returning -1 if the key-value was not found, or the current dataLayer push index that matches.

    var isValueInDatalayer = function($key, $val) {
        var res = -1;
        var dlname;
        for (i in window.google_tag_manager) {
            if(typeof(window.google_tag_manager[i])=="object" && window.google_tag_manager[i].gtmDom)
                dlname = i;        
        }        
        if (typeof (window.google_tag_manager) != "undefined") {
            for (i in window[dlname]) {
                if (!$val & $val!='') {                
                    if (window[dlname][i][$key]) {
                        return i;
                    }
                } else {
                    if (window[dlname][i][$key] && window[dlname][i][$key] == $val) {
                        return i;
                    }
                }
            }
        }
        return res;
    };

    Let’s see how why can use it, we’re going to imagine that we are on a vanilla GTM container and with no dataLayer pushes from the page:


    isValueInDatalayer('event');

    This call above will return 0, since it will match the first event key pushed.


    isValueInDatalayer('event','gtm.load');

    The call above will return 2, and the gtm.load event was found on the 2 position within the dataLayer pushes array (take note that it starts with on 0).


    isValueInDatalayer('non-existent-key');
    isValueInDatalayer('event','non-existent-event-value');

    The two last example will return -1, since they won’t match the current data in our dataLayer.


    If you’re using a custom dataLayer variable name, there’s no need for you to modify the code since it’ll autodiscover your current dataLayer variable name.

    Let me know any improvement or ideas for this useful function on the comments πŸ™‚

  • How to keep your returning user’s legacy data when switching domain name

    When we’re switching a site domain name we always have in mind some basic steps to take in mind so the migration doesn’t end being a mess. One of those steps is usually 301-ing our old domain content to the new one, but we never think on how will this affect our current Google Analytics data.

    Universal Analytics cookie is based on the domain hostname, so if we switch the current domain a new cookie set will be created along with a new client ID, forcing that all the visits we redirect will end being new visitors. This mean we’ll be losing ALL our previous attributions/history data for returning visitors., doh!

    This time, we’ll try to mitigate this problem using Google Tag Manager and some Mod Rewrite (htaccess) magic.

    We’ll be using Apache’s Rewrite module to read the current user “_ga” cookie and passing it along our redirection, then from GTM we’ll force the clientId within our tracker in order to keep our old users clientId for our new domain πŸ™‚

    Below you can find our .htaccess. As you can see we check for _ga cookie value, and then we redirect the user to the new domain with a new parameters named “_mga” , that is going to hold the _ga cookie value and the timestamp.

    RewriteEngine On
    RewriteBase /
    RewriteCond %{HTTP_COOKIE} _ga=([^;]+) [NC]
    RewriteRule ^(.*)$ http://www.new-domain.com$1?__mga=%1\.%{TIME} [R=301,QSA,L]
    RewriteRule ^(.*)$ http://www.new-domain.com$1 [R=301,QSA,L]
    

    You may be asking yourself about why we are adding the current timestamp (%{TIME}) as a parameter value. The reason is pretty simple, we don’t want someone sharing that url to someone else and end having a lot of users sharing the same clientId, do we?

    We’ll use that value later on Google Tag Manager to check is the redirection was generated less than 120 seconds ago if not we’ll just return any value. This is how native Universal cross-domain feature works too!

    if ({{__mga.timestamp}}) > 120)
        return;

    If _mga.timestamp and current user timestamp values substract is higher than “120”,  it means it was generated more than 2 minutes ago, so we don’t want to push any clientId back on this case.

    The current format for the %{{TIME}} value from mod rewrite is the following:

    {{YEAR}}{{MONTH}}{{DAY}}{{HOUR}}{{MINUTE}}{{SECOND}}

    And it will likely be using the UTC timezone. This is important since the check will be made client-side, and we’re gonna need to check the current user time in UTC time, not the current client timezone.

    GTM Configuration

    On the Google Tag Manager side, we’ll need one variable that will take care of grabing the _mga value,  and from there we’ll get the clientId and the link generation time.

    Then we’ll be checking the current user browser’s UTC timestamp to see if this link was generated less than 120 second ago, to know if we should be returning any value.

    Grab the variable code bellow:

    function(){
        // Let's grab our custom linker value from QS
        var _mga_linker_value = document.location.search.match(/_mga=([^&]*)/)[1].split('.').pop();
    
        // convert the YYYYMMMDDHHMMSS date to timestamp format
        var _mga_date = new Date(_mga_linker_value.slice(0, 4), _mga_linker_value.slice(4, 6) - 1, _mga_linker_value.slice(6, 8), _mga_linker_value.slice(8, 10), _mga_linker_value.slice(10, 12), _mga_linker_value.slice(12, 14));
    
        // add the current browser timezone offset
        var _mga_timestamp_utc = Math.round(_mga_date*1/1000)-new Date().getTimezoneOffset()*60;
    
        // browser UTC time
        var _browser_timestamp_utc = new Date()*1;
    
        // the total seconds diff, between linker creation time and current user's browser time
        var _linking_offset_in_sec = Math.round(_browser_timestamp_utc/1000 - _mga_timestamp_utc);
    
        // force the clientId value ONLY if the time difference is less than 2 minutes
        if(_linking_offset_in_sec<120){
                return document.location.search.match(/_mga=([^&]*)/)[1].match(/GA1\.[0-9]\.([0-9]*.[0-9]*)/)[1];            
      	}
    }

    Now we only need to use the returned value by this variables as the “clientId” value on our tracker this way:

    Of this this may not be only applied for Google Analytics but for any other cookie value you want to keep, just modify the code to grab any other cookie value you may need

  • Google Tag Manager event tracking using data attribute elements

    On the last #tip we talked about how to debug/qa our data attributes , and now we’re going to learn about how to natively track events/social interactions within Google Tag Manager .

    We’re going to learn it, basing our tracking on Google Analytics Events and Social Interactions. Of course this can be expanded to any other tool just changing the data attributes, but hey, this is about to learning not about give me a copy and paste solution.

    Let’s start saying that data-* attributes it’s and standard HTML5 mark up that we can use to manage our page functionality based on that data instead of relaying on classes or id.
    A data attribute is intended to store values that are mean to the page or application and that doesn’t fit in any other appropiate attributes.

    In our care the data that we’re storing is the hitype that we’ll be firing. In our example it could an “event” or a “social interaction” . For this we’re setting a data attribute named “wa-hittype“, and this attribut will hold the current hit to be fired, in our case “event” or “social”.

    We’ll be using some other data attributes to define our events category, action, label, value and non-interactional switch, please take a look to the following table for more details:

    [table]
    Data Attr,Description
    data-wa-hittype, Type of hit we want to fire on user’s click
    data-wa-event-category, The Category value for our event
    data-wa-event-action, The action value for our event
    data-wa-event-label, *optional. The label for our even
    data-wa-event-value, *optional. The value for our event if any
    data-wa-event-nonint,*option. Is the event non interactional?
    [/table]

    Let’s check an example:

    <a 
     data-wa-hittype="event" 
     data-wa-event-category="Ecommerce" 
     data-wa-event-action="Add To Cart" 
     data-wa-event-label="SKU0001" 
     data-wa-event-value="12.00"
     href="#"
    >Add To Cart<a/>

    So we have a data attribute that will allow us to know when fire a tab based on a CSS selector, and we’ve too all the info needed to populate the information for our event.

    Next step is to configure some variables to read these values when the user clicks on the element.

    So now when the user clicks on some element, we’ll have all our event needed data on those new variables. Let’s work on the trigger that will make our tag to fire.

    We’re using the In-build {{Click Element}} Variable and some magic with a CSS Selector.

    There we’re, now we just need to setup our event tag, add our variables to the tag fields, and set the trigger on this new event tag.

    Now everytime you need to track a new click on some page element, you’ll just need to ask the developers to add some “standard” data mark-up to the right element.  Even if you do something wrong, the variables will take care of fixing the values were possible (like an event value expecting an integer value instead of a string) or setting a right boolean value for the non-interactional switch for the event.

    Any suggestion or improvement to this tracking method is welcome πŸ™‚

    P.D. Yeah! I know I talked about tracking Social Interactions too, but I’m pretty sure that you’ll be able to figure it out. Think about like a good moment to learn how to do things instead of just trying to copy and paste and hoping it will work.