Google Analytics中的事件跟踪不会显示事件数据

时间:2014-09-09 07:40:45

标签: google-analytics

我在我的网站上添加了Google Analytics代码,它显示了活跃的用户,但没有显示事件列表为空。

我尝试了以下代码

1)

jQuery('.btn-cart').click(function() {


ga('send', 'event', 'add-to-cart', 'add','product-added-to-cart');

});

2)

onclick("_gaq.push(['_trackEvent', 'whitepaper', 'add', 'product-added-to-cart']);")

enter image description here

请让我知道我在哪里做错了。

1 个答案:

答案 0 :(得分:0)

我找到了解决方案。

jQuery('.btn-cart').on('click',function() {
_gaq.push(['_trackEvent', 'Add to Cart', 'Add To Cart Clickthrough', '<?php echo $currentUrl = Mage::helper('core/url')->getCurrentUrl();?>']);

});