0

我正在尝试实施enhanced ecommerce plugin. 但我的电子商务数据没有反映在“谷歌分析”网络界面中。下面是我包含在标题页中的脚本。

(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');


ga('create', 'UA-xxxxxxxx-1', 'auto',{'name': 'newTracker'});
ga('newTracker.require', 'ec');

ga('ec:addPromo', {
        'id': 'xyz', // Promotion ID - Required Type: string
        'name': 'test', // Promotion Name - Type: string
        'creative':'', // Creative ad used for promotion - Type: string
        'position':''  // Position of the creative ad - Type: string
}); 


ga('newTracker.send', 'pageview');

在此处输入图像描述

以上是调试输出。我有旧插件使用不同的 ID,新插件使用不同的 ID。两者都在不同的js文件中。但与用户事件同时触发。我在下面看到错误aborting hit。我不确定这是旧插件还是新插件中止hit或者我应该忽略它?

还有一点需要强调。我已经Google Tag manager实施了。这会崩溃ecommerce plugin吗?

4

1 回答 1

0

我不得不到处设置newTracker

 ga('create', 'UA-77806616-1', 'auto',{'name': 'newTracker'});
 ga('newTracker.require', 'ec');

ga('newTracker.ec:addPromo', {
        'id': 'xyz1', // Promotion ID - Required Type: string
        'name': 'name2', // Promotion Name - Type: string
        'creative':'', // Creative ad used for promotion - Type: string
        'position':''  // Position of the creative ad - Type: string
 });
于 2016-06-09T10:43:17.233 回答