赞
踩
在网上找了很久的代码,也研究了一下google官方的文档。终于找到在woocommerce中设置电子商务跟踪代码的方法。
add_action( 'woocommerce_thankyou', 'conversion_tracking_thank_you_page', 95, 1 ); function conversion_tracking_thank_you_page( $order_id ) { if( ! $order_id ) return; // Get the WC_Order instance Object $order = wc_get_order( $order_id ); ?> <!-- Google Tag: Transaction conversion event --> <script> gtag('event', 'conversion', { 'send_to' : 'AW-######/######', 'value' : <?php echo $order->get_total(); ?>, 'currency' : '<?php echo $order->get_currency(); ?>', 'transaction_id': <?php echo $order->get_transaction_id() ? $order->get_transaction_id() : $order_id; ?> }); </script> <?php }
</
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。