如果订单商品属于特定商品类别,则结帐重定向后的Woocommerce

时间:2019-04-08 09:47:49

标签: php wordpress woocommerce checkout orders

我需要这样做,以便当人们在我们的网上商店中下订单时,他们将重定向到“我的帐户”,但前提是类别为XXX,XXX,XXX

但是我似乎无法使其正常工作

我尝试使用&& is_product_category('Category x','Category x','Category x')

// REDIRECT AFTER PLACE ORDER BUTTON!
add_action( 'woocommerce_thankyou', 'KSVS_redirect_custom');
function KSVS_redirect_custom( $order_id ){
    $order = new WC_Order( $order_id );

    $url = 'https://kanselvvilselv.dk/min-konto/';

    if ( $order->status != 'failed' ) {
        wp_redirect($url);
        exit;
    }
}

它无需输入&& is_product_category('Category x','Category x','Category x')就可以工作,但是随后它就可以在不应工作的类别上工作。

3 个答案:

答案 0 :(得分:1)

以下代码使用专用的template_redirect钩子和WordPress has_term()条件函数(用于产品类别),将在结帐后将客户重定向到我的帐户部分,他们的订单包含来自已定义产品类别的商品:

add_action( 'template_redirect', 'order_received_redirection_to_my_account' );
function order_received_redirection_to_my_account() {
    // Only on "Order received" page
    if( is_wc_endpoint_url('order-received') ) {
        global $wp;

        // HERE below define your product categories in the array
        $categories = array('Tshirts', 'Hoodies', 'Glasses');

        $order = wc_get_order( absint($wp->query_vars['order-received']) ); // Get the Order Object
        $category_found = false;

        // Loop theough order items
        foreach( $order->get_items() as $item ){
            if( has_term( $categories, 'product_cat', $item->get_product_id() ) ) {
                $category_found = true;
                break;
            }
        }

        if( $category_found ) {
            // My account redirection url
            $my_account_redirect_url = get_permalink( get_option('woocommerce_myaccount_page_id') );
            wp_redirect( $my_account_redirect_url );
            exit(); // Always exit
        }
    }
}

代码进入您的活动子主题(或活动主题)的function.php文件中。经过测试,可以正常工作。

答案 1 :(得分:0)

已更新,它将在所有订购的产品中循环显示,如果它与1个具有类别的产品匹配,则它将重定向到您的URL:

add_action( 'woocommerce_thankyou', 'KSVS_redirectcustom');

function KSVS_redirectcustom( $order_id ){
    $order = wc_get_order( $order_id ); 
    $url = get_permalink( get_option('woocommerce_myaccount_page_id') );

    if ( $order->status != 'failed' ) {

        $product_cats = array('product-cat1', 'product-cat', 'product-cat3');

        foreach ($order->get_items() as $item) {

            if ( has_term( $product_cats, 'product_cat', $product->id) ) {
                $cat_check = true;
                break;
            }
        }

        if ( $cat_check ) {
            wp_redirect($url);
            exit;
        }
    }
}

答案 2 :(得分:0)

注意:我一点都不熟悉woocommerce,请轻松回答我的问题。 似乎函数is_product_category具有不同的用途,通过快速概述,我可以尝试一下:

$redirectWhenCategoryIs = ['cat x', 'cat y', 'cat z'];

$categories = [];
foreach($order->get_items() as $item) {
    foreach(get_the_terms($item['product_id'], 'product_cat') as $term){
        $categories[] = $term->slug;
    }
}

if(count(array_intersect($redirectWhenCategoryIs, $categories))){
    wp_redirect($url);
}