用Google跟踪代码管理器推送自定义变量

时间:2013-12-12 06:49:03

标签: google-analytics google-tag-manager

我在我的网站上使用GA代码,如下所示

    <script type="text/javascript" language="javascript">
                    var _gaq = _gaq || [];
                    _gaq.push(['_setAccount', 'UA-xxxxxx-1']);
                    _gaq.push(['_setDomainName', '.myweb.co.uk']);
if (source != '') {
                        _gaq.push(function() {
                            extga._setCampValues(source, medium, name);
                        });
                    }
                    // Set the custom variable ranking
                    var url = String(document.referrer);
                    // confirm they came from G
                    if (url.indexOf("google.co") != -1 || url.indexOf("google.be") != -1 || url.indexOf("google.ie") != -1 || url.indexOf("google.fr") != -1) {

                        var urlVars = {};
                        var parts = url.replace(/[?&]+([^=&]+)=([^&]*)/gi, function(m, key, value) {
                            urlVars[key] = value;
                        });
                        // Push to GA Custom Variables
                        _gaq.push(['_setCustomVar', '1', 'Keywords Rankings', urlVars["cd"], 1]);
                    }
                    //Track the record in GA
                    _gaq.push(['_trackPageview']);

                    (function() {
                        var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
                        ga.src = ('https:' == document.location.protocol ? 'https://' : 'http://') + 'stats.g.doubleclick.net/dc.js';
                        var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
                    })();
                </script>

现在我想用Google跟踪代码管理器替换GA代码。我的问题是我们如何在使用谷歌标签managera时在谷歌分析上推送cstom变量,目前我正在使用_gaq.push方法推广广告系列的自定义数据。

此致 哈比卜

3 个答案:

答案 0 :(得分:2)

转到Google跟踪代码管理器后,将_gaq.push()替换为dataLayer.push()。 在内部,dataLayer.push()在触发标记的触发规则时调用_gaq.push()。

创建Google Analytics tag并使用您的帐户,域名等进行配置。默认情况下,它使用点按rule在所有网页上运行。

您可以使用GUI来管理GA配置,也可以只使用自定义html代码段并粘贴代码。

您将要使用macros来构建自定义变量。 使用自定义JavaScript宏,您可以重用现有代码。 然后在GA代码中加入宏。

答案 1 :(得分:2)

另一种选择是使用自定义Javascript宏来处理自定义变量。您可以将整个集自定义变量排名放在其中:

function(){
var url = {{referrer}}; //there is a GTM macro for the HTTP referrer

// confirm they came from G
if (url.indexOf("google.co") != -1 || url.indexOf("google.be") != -1 || url.indexOf("google.ie") != -1 || url.indexOf("google.fr") != -1) {

    var urlVars = {};

    var parts = url.replace(/[?&]+([^=&]+)=([^&]*)/gi, function(m, key, value) {
        urlVars[key] = value;
    });

// Return the Custom Variable value
return urlVars["cd"];
}   

}

*注意,我没有测试过这段代码,但它应该非常接近。

然后您可以使用该宏,您可能会将其命名为{{customVar1Val}}并将其插入Google Analytics代码:

enter image description here

答案 2 :(得分:1)

您可以在Tag Manager developers guide处回答您的问题。甚至还有一个名为Migrating Tags to Google Tag Manager的部分,您可以阅读

  

...本节介绍最佳实践迁移工作流程。该过程有5个主要步骤:

     
      
  1. 映射您的网站(可选)
  2.   
  3. 列表项
  4.   
  5. 实施标准Google跟踪代码管理器代码段
  6.   
  7. 添加事件和变量
  8.   
  9. 在Google跟踪代码管理器的管理界面中添加包含相关解雇规则的代码
  10.   
  11. 最终迁移交换
  12.