首页 文章

Google Universal Analytics再营销和动态再营销

提问于
浏览
0

我正在尝试在我的电子商务网站中实施再营销,动态再营销 and Adwords转化跟踪 . 我面临的问题是,似乎有一些关于这些功能的实现的信息,其中一个来源(主要是Google 's own developers portal) says I can use Google Universal Analytics to all of these but also says that I should use the Adwords tags directly. I am incredibly confused by it all. If there is an expert out there that knows how I can implement these things using only Universal Analytics I' d)非常感激 .

到目前为止,我所拥有的是我网站上的标准Universal Analytics脚本,并启用了displayfeatures:

ga("require", "displayfeatures");

据我所知,这将启用再营销 . 但我还没有读到关于启用动态再营销的任何内容 . 它能兼得吗?我还在GA上设置了自定义维度,因此我应该能够使用以下内容捕获这些内容:

ga('set', 'dimension1', '123');
ga('set', 'dimension2', 'product');

我的困惑在于如何通过Universal Analytics跟踪Adwords转化 . 更具体地说,我将如何推高 google_conversion_labelgoogle_conversion_languagegoogle_conversion_format 等...从我收集的内容中,我可能只能通过Adwords标签执行此操作 . 当我应该使用Adwords标签时,我是否在试图使用GA时吠叫错误的树?

1 回答

  • 0

    只需致电

    google_trackConversion({
      'google_conversion_id': ID GOES HERE,
      'google_conversion_language': 'en',
      'google_conversion_format': '3',
      'google_conversion_label': 'gzTWCJb7wl4Q6quR4QM',
      'google_conversion_currency': 'GBP',
      'google_remarketing_only': false
    });
    

    传递所有相关信息 . 这不是Universal Analytics的一部分,而是AdWords再营销代码

相关问题