GA增强型电子商务不记录交易

时间:2015-06-24 15:44:57

标签: google-analytics

我在使用GA增强型电子商务时遇到了困难。它记录事件但没有交易或产品数据。

我在视图设置中启用了增强型电子商务功能。我还使用了GA调试器,它似乎没有显示错误。

这是我的代码:

(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','//www.google-analytics.com/analytics.js','ga');

ga('create', 'UA-20148609-3', { userId: 'fdea0a15-bf1e-49e0-97c2-8092255aad21' });  
ga('send', 'pageview', {
  'title': 'Receipt'
});
ga('send', 'event', 'Completed Order', '');
ga('require', 'ec');

ga('ec:addProduct', { 
  'id': '207033767504',
  'name': "Some product",
  'category': '',
  'brand': '', 
  'variant': '', 
  'price': '29.95', 
  'quantity': 1  
});

ga('ec:setAction', 'purchase', {   
  'id': '735441434', 
  'affiliation': 'My Store',
  'revenue': '61.15',  
  'tax': '0',  
  'shipping': '31.2',
  //'coupon': 'SUMMER2013'  
});    

GA调试器日志:https://gist.github.com/cyberwombat/a047eb9077c1c94b374e

1 个答案:

答案 0 :(得分:3)

好的修复。看来,网页浏览调用必须在之后发生。我在文档中没有看到它,但似乎已经完成了这个伎俩。