Google Analytics电子商务概述 - 未显示收入数据

时间:2015-09-28 15:24:20

标签: google-analytics e-commerce

有谁知道为什么收入数据没有显示在概述上?

这是电子商务页面上的代码段:

http://i.stack.imgur.com/NAjoq.png

old_url

销售业绩也显示没有数据: http://i.stack.imgur.com/ebPmK.png

有没有人可以在这里建议?此外,如果您需要更多信息来回答这个问题,您能告诉我吗?

1 个答案:

答案 0 :(得分:1)

您必须将交易数据传递给Google Analytics,以用于交易和交易中包含的任何产品。综合浏览本身不包含必要的信息。

示例from the documentation

var _gaq = _gaq || [];
  _gaq.push(['_setAccount', 'UA-XXXXX-X']);
  _gaq.push(['_trackPageview']);
  _gaq.push(['_addTrans',
    '1234',           // transaction ID - required
    'Acme Clothing',  // affiliation or store name
    '11.99',          // total - required
    '1.29',           // tax
    '5',              // shipping
    'San Jose',       // city
    'California',     // state or province
    'USA'             // country
  ]);

   // add item might be called for every item in the shopping cart
   // where your ecommerce engine loops through each item in the cart and
   // prints out _addItem for each
  _gaq.push(['_addItem',
    '1234',           // transaction ID - required
    'DD44',           // SKU/code - required
    'T-Shirt',        // product name
    'Green Medium',   // category or variation
    '11.99',          // unit price - required
    '1'               // quantity - required
  ]);
  _gaq.push(['_trackTrans']); //submits transaction to the Analytics servers

  (function() {
    var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
  })();

交易ID是将各个产品与交易联系起来的关键。必要的代码必须由您的网站生成,GA不能单独执行此操作。

您应该切换到当前版本的跟踪代码。