2

我正在尝试为 WooCommerce 管理的电子商务网站(当前使用版本 2.4.11,没有更新的可能性)实施增强型电子商务,而不使用 WooCommerce 增强型电子商务插件。

我怎么做?到目前为止,我有这个:

<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','https://www.google-analytics.com/analytics.js','ga');

ga('create', 'UA-68273318-1', 'auto');
ga('require','ec');
ga('ec:addProduct', {                 // Provide product details in an productFieldObject.
  'id': '<?php the_ID(); ?>',                     // Product ID (string).
  'name': '<?php do_action( 'htb_woocommerce_shop_loop_item_title' );?>',  // Product name (string).
});
ga('ec:setAction', 'detail');       // Detail action.
ga('send', 'pageview');

</script>

它正在输出正确的 ID 和名称,但这就是我需要做的吗?如何productImpressions在产品列表中获取和点击?

4

0 回答 0