我在我的网站上添加了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']);")
请让我知道我在哪里做错了。
答案 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();?>']);
});