Hi I ve read some about the use of utag.view and utag.link but I am confussed about how to implement it. Can anyone help us about this topic?. or is any tutorial available .Tks in advance. Our point is that we have a C2C built without reload por each screen (so is an unique page). In that page we think in implement google analytics and our aim is to fire an event for each step plus setting virtual pages. We thought to use a datalayer with 3 variables that will be change their values in each step and use this values to implment the google Universal taggging in a Javascript extension. After this resume, the questions we need help are this: 1. What should we implement on page?. This is what we thought before known the navigation were not use an unique page. code: script type="text/javascript" var utag_data = { gestionC2C_origen : "", gestionC2C_nombre : "", gestionC2C_paso : "" } /script script type="text/javascript"(function(a,b,c,d){ a='//tags.tiqcdn.com/utag/xxxxxxx/XXXXX/prod/utag.js'; b=document;c='script';d=b.createElement(c);d.src=a;d.type='text/java'+c;d.async=true; a=b.getElementsByTagName(c)[0];a.parentNode.insertBefore(d,a); })(); /script 2. Tealium JS extension: if(typeof(utag_data)!='undefined') { //virtual page for funnel reports ga('set', 'page', utag_data.gestionC2C_nombre+utag_data.gestionC2C_paso); //Events por events reports and configure goals ga('send', 'event', 'C2C_CCLI', utag_data.gestionC2C_nombre, utag_data.gestionC2C_paso+':'+document.URL); }); Thanks in advance. Pedro
... View more