加载两次WooCommerce Thankyou页面会重复进行转化跟踪吗? [英] Loading twice WooCommerce thankyou page would duplicate Conversion tracking?

查看:108
本文介绍了加载两次WooCommerce Thankyou页面会重复进行转化跟踪吗?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在woocommerce商店的tankyou页面中实现了自定义脚本,以跟踪Google广告的转化.这是我的实现:

I implemented a custom script in tankyou page in my woocommerce store to track google ads conversions. This is my implementation:

add_action( "woocommerce_thankyou", "pixel_analytics_conversion_track_script", 20 );
if ( ! function_exists( 'pixel_analytics_conversion_track_script' ) ) {
    function pixel_analytics_conversion_track_script( $order_id ) {
        if ( $order_id > 0 ) {
            $order = wc_get_order( $order_id );
            if ( $order instanceof WC_Order ) {
                $order_id               = $order->get_id(); // order id
                $order_key              = $order->get_order_key(); // order key
                $order_total            = $order->get_total(); // order total
                $order_currency         = $order->get_currency(); // order currency
                $order_payment_method   = $order->get_payment_method(); // order payment method
                $order_shipping_country = $order->get_shipping_country(); // order shipping country
                $order_billing_country  = $order->get_billing_country(); // order billing country
                $order_status           = $order->get_status(); // order status
                ?>
                <script type="text/javascript">
                    jQuery(document).ready(function( $ ){
                        console.log('PURCHACE EVENT');
                        /* Track conversion on facebook Pixel */
                        fbq('track', 'Purchase',
                        {
                            value: <?php echo $order_total ?>,
                            currency: "<?php echo $order_currency ?>"
                        });
                    
                        /* Track conversion on Google Ads */
                        gtag('event', 'conversion', 
                        { 
                            'send_to': 'AW-693771414/0MhwCMa9rLYBEJa56MoC', 
                            'value': <?php echo $order_total ?>, 
                            'currency': "<?php echo $order_currency ?>", 
                            'transaction_id': "<?php echo $order_id ?>"
                        });
                    });
                </script>
                <?php
            }
        }
    }
}

代码工作得很好,但是一些数据并不准确,我认为如果用户两次感谢您翻页,上面的代码可能会重复转换.我们有一封订单确认电子邮件,其中包含指向woocommerce的感谢页面的链接.

The code works very well but some data is not precise and I think that probably the code above duplicates conversion if user goes to thank you page twice. We have an order confirmation email that has a link to the thankyou page of woocommerce.

如您所见,我正在发送 transaction_id 参数,所以我的问题是

As you can see Im sending the transaction_id parameter, so my question:

如果用户加载了两次或N次感谢页面,即使您发送 transaction_id 参数,该转换也会在Google广告中显示为重复项?

If the user loads twice or N times the thank you page the conversion will appear dupplicated in Google ads even if you send the transaction_id parameter?

推荐答案

您可以使用订单自定义元数据来避免重复的转化跟踪,如下所示:

You can use order custom meta data to avoid duplicated Conversion tracking as follows:

add_action( "woocommerce_thankyou", "pixel_analytics_conversion_track_script", 20 );
if ( ! function_exists( 'pixel_analytics_conversion_track_script' ) ) {
    function pixel_analytics_conversion_track_script( $order_id ) {
        // Avoid if pixel analytics conversion track script has been run before
        if ( $order_id > 0 && 'done' !== get_post_meta( $order_id, '_pixel_tracking', true ) ) {
            $order = wc_get_order( $order_id );
            
            if ( is_a($order, 'WC_Order') ) {
                $order_id               = $order->get_id(); // order id
                $order_key              = $order->get_order_key(); // order key
                $order_total            = $order->get_total(); // order total
                $order_currency         = $order->get_currency(); // order currency
                $order_payment_method   = $order->get_payment_method(); // order payment method
                $order_shipping_country = $order->get_shipping_country(); // order shipping country
                $order_billing_country  = $order->get_billing_country(); // order billing country
                $order_status           = $order->get_status(); // order status
                ?>
                <script type="text/javascript">
                    jQuery(document).ready(function( $ ){
                        console.log('PURCHACE EVENT');
                        /* Track conversion on facebook Pixel */
                        fbq('track', 'Purchase',
                        {
                            value: <?php echo $order_total ?>,
                            currency: "<?php echo $order_currency ?>"
                        });
                    
                        /* Track conversion on Google Ads */
                        gtag('event', 'conversion', 
                        { 
                            'send_to': 'AW-693771414/0MhwCMa9rLYBEJa56MoC', 
                            'value': <?php echo $order_total ?>, 
                            'currency': "<?php echo $order_currency ?>", 
                            'transaction_id': "<?php echo $order_id ?>"
                        });
                    });
                </script>
                <?php
                // Flag the order (with custom meta data) to avoid pixel analytics conversion track script run multiple times.
                update_post_meta( $order_id, '_pixel_tracking', true );  
            }
        }
    }
}

代码进入活动子主题(或活动主题)的functions.php文件中.应该可以.

Code goes in functions.php file of the active child theme (or active theme). It should works.

这篇关于加载两次WooCommerce Thankyou页面会重复进行转化跟踪吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆