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

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

我需要这样做,当人们在我们的网上商店下订单时,他们将重定向到我的帐户,但仅限于类别为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')工作,但它正在研究它不应该工作的类别。

php wordpress woocommerce checkout orders
3个回答
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文件中。经过测试和工作。


0
投票

注意:我根本不熟悉woocommerce,请轻松回答我的问题。似乎功能is_product_category有不同的purpouse,通过快速概述我带来了这个,尝试一下:

$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);
}

0
投票

更新后,这应该遍历所有已订购的产品,如果它与一个类别的产品匹配,那么它将重定向到您的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;
        }
    }
}
© www.soinside.com 2019 - 2024. All rights reserved.