我正在尝试实施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
吗?