从Woocommerce thankyou自动重定向到传递变量的外部链接

问题描述 投票:2回答:1

在Woocommerce中,在下订单之后,我想在5秒之后自动将客户从thankyou页面重定向到外部链接,传递一些变量作为order_idorder_ammount

那么,如何在5秒后将客户自动从Woocommerce重定向到外部链接传递变量?

欢迎任何赛道。

javascript php wordpress woocommerce orders
1个回答
2
投票

以下代码将使用php和javascript从结帐页面重定向到5秒后传递少量变量的外部链接:

 add_action( 'woocommerce_thankyou', 'thankyou_delated_external_redirection', 10, 1 );
function thankyou_delated_external_redirection( $order_id ){
    if( ! $order_id ){
        return;
    }

    $order          = wc_get_order( $order_id ); // Instannce of the WC_Order Object
    $order_total    = $order->get_total(); // Order total amount

    $link_redirect  = 'http://www.example.com/'; // Base url
    $link_redirect .= ?order_id='.$order_id.'&order_ammount='.$order_total; // passed variables

    ?>
    <script>
    jQuery(function($){
        // Redirect with a delay of 5 seconds
        setTimeout(function(){
            window.location.href = '<?php echo $link_redirect; ?>';
        }, 5000);
    });
    </script>
    <?php;
}

代码位于活动子主题(或活动主题)的function.php文件中。测试和工作。

重定向链接就像http://example.com/path/?order_id=1420&order_ammount=136.20

© www.soinside.com 2019 - 2024. All rights reserved.