作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我需要您有关 Google Analytics (analytics.js) 的帮助。我在头部有第一个通用部分,效果很好:
<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-72717911-1', 'auto');
ga('send', 'pageview');
</script>
但是,当我将以下部分添加到“成功”页面的常规正文部分以跟踪交易时,我在谷歌分析中没有收到它。我根本不是 JS 专家,所以解决方案可能非常简单,但是我在调试工具中没有看到任何错误,甚至 Chrome 的特殊 google 插件看起来也很正常。
<script>
ga('require', 'ecommerce');
ga('ecommerce:addTransaction', {
'id': '001', // Transaction ID. Required.
'affiliation': 'trendybox.com.ua', // Affiliation or store name.
'revenue': '500', // Grand Total.
'shipping': '0', // Shipping.
'tax': '0' // Tax.
});
ga('ecommerce:addItem', {
'id': '" . $order_id . "', // Transaction ID. Required.
'name': 'product1', // Product name. Required.
'sku': 'DD00111', // SKU/code.
'category': 'Cosmetics', // Category or variation.
'price': '500', // Unit price.
'quantity': '1' // Quantity.
});
ga('ecommerce:send');
</script>"
最佳答案
关于google-analytics - 我对 Google Analytics (analytics.js) 的电子商务部分做错了什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36095852/
我是一名优秀的程序员,十分优秀!