Google Universal Analytics电子商务跟踪

时间:2014-03-10 21:14:35

标签: google-analytics e-commerce analytics universal-analytics

因此,我为新的Google Universal Analytics提供了正确的电子商务跟踪代码,但我对变量如何填充感到困惑?如何在此脚本中获取正确的项目,价格,类别或项目数(对于addItem)?我一直在网上看,我不认为我在这里看到了全貌。

<script>
 (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-44464798-1', 'safeway.com');
  ga('send', 'pageview');
  ga('require', 'ecommerce', 'ecommerce.js');

  ga('ecommerce:addTransaction', {
  'id': '200028184',                // Transaction ID. Required.
  'affiliation': 'Safeway',   // Affiliation or store name.
  'revenue': '11.99',              // Grand Total.
  'shipping': '5.00',               // Shipping.
  'tax': '1.00'                    // Tax.
});

  ga('ecommerce:addItem', {
  'id': '200028184',               // Transaction ID. Required.
  'name': 'Apples',   // Product name. Required.
  'sku': 'CVC2US',                  // SKU/code.
  'category': '',        // Category - you can put some category if we have such
  'price': '11.99',                // Unit price.
  'quantity': '1'                  // Quantity.
});

 // If there are additional items they should be added the same way. The sum of all    Items prices should match with the "revenue" data from above. 

  ga('ecommerce:send');  // 
</script>

2 个答案:

答案 0 :(得分:0)

我不知道您的网站是用什么语言编写的。假设它的PHP或asp.net,您需要进入构建网站本身的代码并添加这些标记。

因此,要回答您的问题,您的网站背后的代码中会填充变量和值。可能与用户结账时同时进行。

答案 1 :(得分:0)

您希望引用变量的值,而不是脚本中的值。 这些将在购买完成时由购物车代码分配。

Google文档有一个PHP示例。 Analytics JS Ecommerce Dev Notes