Woocommerce结帐后重定向,如果订单项目属于特定产品类别



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

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'),但随后它在不应该工作的类别上工作。

以下代码使用专用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
        }
    }
}

代码进入函数.php活动子主题(或活动主题(的文件。经过测试并工作。

注意:我对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);
}

更新后,这应该遍历所有订购的产品,如果它将 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;
        }
    }
}

相关内容

  • 没有找到相关文章

最新更新