在WooCommerce结帐付款后自定义条件重定向

时间:2017-08-07 12:05:02

标签: php wordpress woocommerce product orders

我使用WooCommerce在Wordpress上使用Lirox One主题。我想在付款后进行自定义重定向:
如果客户购买产品ID 333,它将被重定向到产品444(例如)。

我已经制作了一些自定义代码,但它不起作用,我收到错误500(并且调试为空)。

我做错了什么以及如何让它发挥作用?

这是我的代码:

add_action( 'woocommerce_thankyou', 'check_order_product_id', 1 );
function check_order_product_id( $order_id ){
$order = new WC_Order( $order_id );
    $items = $order->get_items();
    foreach ( $items as $item ) {
       $product_id = $item['product_id'];

          //* single product id
          if ( $product_id == 399 ) {
            // Content Title line
            $url = 'http://yoursite.com/custom-url1';
            }
          if ( $product_id == 358 ) {
            $url = 'http://yoursite.com/custom-url2';
          }
          if ( $product_id == 398 ) {
            $url = 'http://yoursite.com/custom-url3';
          }

          if ( $product_id == 357) {
            $url = 'http://yoursite.com/custom-url5';
          }

          if ( $product_id == 356) {
            $url = 'http://yoursite.com/custom-url6';
          }

          if ( $product_id == 335) {
            $url = 'http://yoursite.com/custom-url';
          }
          if ( $order->status != 'failed' ) {
    wp_redirect($url);
    exit;
}

3 个答案:

答案 0 :(得分:0)

注意:在您的代码中,您必须删除exit之后使用的wp_redirect。其他一切都会正常工作。下面提供了一些参考资料,以便更好地理解概念。

  

说明:然后,您仅为特定产品提供重定向   仅ID不适用于所有产品IDS,因为它可能会引导您进入   内部服务器错误,因为它在Foreach循环中。

使用wp_redirect()进行重定向很好。

您检查的产品ID是正确的。事情是,如果要明确传递URL,你必须遵循另一种方法。

// We don't know for sure whether this is a URL for this site,
// so we use wp_safe_redirect() to avoid an open redirect.
wp_safe_redirect( $url );

// We are trying to redirect to another site, using a hard-coded URL.
wp_redirect( 'https://example.com/some/page' );

更多参考资料:

<?php wp_redirect( home_url() ); exit; ?>

Redirects can also be external, and/or use a “Moved Permanently” code :

<?php wp_redirect( 'http://www.example-one.com', 301 ); exit; ?>

The code below redirects to the parent post URL which can be used to redirect attachment pages back to the parent.

<?php wp_redirect( get_permalink( $post->post_parent ) ); exit; ?>

参考: https://developer.wordpress.org/reference/functions/wp_redirect/

答案 1 :(得分:0)

对于重定向,请使用隐藏在WordPress template_redirect 操作挂钩中的自定义函数,以避免错误500 ...

我已根据您的要求更改了您的代码,以符合您的要求。此代码是WooCommerce版本3 +的女佣:

add_action( 'template_redirect', 'conditional_redirection_after_payment');
function conditional_redirection_after_payment(){
    // When "thankyou" order-received page is reached …
    if ( is_wc_endpoint_url( 'order-received' ) ) {
        global $wp;

        // Get the order ID from the browser url
        $order_id =  intval( str_replace( 'checkout/order-received/', '', $wp->request ) );

        // Get an instance of the WC_Order object
        $order = wc_get_order( $order_id );

        // If the order status is 'failed' we stop the function
        if( $order->has_status( 'failed' ) ) return;

        // HERE set in the array for each product ID the coresponding url final path
        $product_id_url_paths = array(
            '399' => '/custom-url1',
            '358' => '/custom-url2',
            '398' => '/custom-url3',
            '357' => '/custom-url4',
            '356' => '/custom-url5',
            '335' => '/custom-url6',
        );

        // Iterating through each order items
        foreach( $order->get_items() as $item_id => $item_values ){
            // The Product ID
            $product_id = $item_values->get_product_id();

            foreach( $product_id_url_paths as $key_id => $url_path ){
                if( $key_id == $product_id ){
                    // Product is found and ID match: we got our path url. We redirect
                    wp_redirect( home_url( $url_path ) );
                    exit(); // always exit
                }
            }
        }
    }
}

代码放在活动子主题(或主题)的function.php文件中,或者放在任何插件文件中。

代码经过测试并适用于WC 3 +

答案 2 :(得分:0)

接受的答案适用于Woocommerce 3+,对于旧版本(我使用的是2.6.4),它没有。对于使用此版本的任何其他人,请尝试以下代码:

add_action( 'template_redirect', 'conditional_redirection_after_payment');
function conditional_redirection_after_payment(){
    // When "thankyou" order-received page is reached …
    if ( is_wc_endpoint_url( 'order-received' ) ) {
        global $wp;

    $order_id =  intval( str_replace( 'checkout/order-received/', '', $wp->request ) );
    // Get an instance of the WC_Order object
    $order = new WC_Order( $order_id );

    // If the order status is 'failed' we stop the function
    if( $order->has_status( 'failed' ) ) return;

    // HERE set in the array for each product ID the coresponding url final path
   $product_id_url_paths = array(
        '1234' => '/your-path/'
    );
    // Iterating through each order items
    foreach( $order->get_items() as $item){
       // echo $item_id;
        // The Product ID
        $product_id = $item['product_id'];

        foreach( $product_id_url_paths as $key_id => $url_path ){
            if( $key_id == $product_id ){
                // Product is found and ID match: we got our path url. We redirect
                wp_redirect( home_url( $url_path ) );
                exit(); // always exit
            }
        }
    }
}

}