在 WooCommerce 中有条件地隐藏运输方式 [英] Conditionally hide shipping methods in WooCommerce

查看:43
本文介绍了在 WooCommerce 中有条件地隐藏运输方式的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

I am trying to hide a shipping method on the checkout page of WooCommerce when shipping country selected is United States - 'US' and cart_total is more than 100. But the script is still hiding both the Normal Shipping and Express shipping, when它应该只隐藏正常的运输(flat_rate:4).任何帮助将不胜感激!

I am trying to hide a shipping method on the checkout page of WooCommerce when shipping country selected is United States - 'US' and cart_total is more than 100. But the script is still hiding both the Normal Shipping and Express shipping, when it should only hide the normal shipping(flat_rate:4). Any help will be greatly appreciated!

function nd_hide_shipping_when_free_is_available( $rates ) {
    $shipping_counrtry = WC()->customer->get_shipping_country();
    $total = WC()->cart->get_displayed_subtotal();
    if ($shipping_country == "US" && $total >= 100){
        unset($rates['flat_rate:4']);
        return $rates;
    }else{
        $free = array();
        foreach ( $rates as $rate_id => $rate ) {
            if ( 'free_shipping' === $rate->method_id ) {
                $free[ $rate_id ] = $rate;
                break;
            }
        }
        return ! empty( $free ) ? $free : $rates;
    }
}
add_filter( 'woocommerce_package_rates', 'nd_hide_shipping_when_free_is_available', 100 );

推荐答案

您可以尝试以下方法,当购物车小计达到 100 或更多时,将隐藏 'flat_rate:4' 运输方式费率 ID,否则免费送货可用,它将隐藏其他运输方式:

You can try the following, that will hide 'flat_rate:4' shipping method rate id for US and when cart subtotal reaches 100 or more, otherwise when free shipping is available, it will hide other shipping methods:

add_filter( 'woocommerce_package_rates', 'shipping_based_on_country_subtotal_and_free_available', 100, 2 );
function shipping_based_on_country_subtotal_and_free_available( $rates, $package ) {
    $country   = WC()->customer->get_shipping_country();
    $subtotal  = WC()->cart->subtotal; // subtotal incl taxes
    $condition = $country == "US" && $subtotal >= 100; // <== HERE Set your condition (country and minimal subtotal amount)
    $free      = array(); // Initializing

    // Loop through shipping rates for current shipping package
    foreach ( $rates as $rate_key => $rate ) {
        if ( $condition ){
            $targeted_rate_id = 'flat_rate:4';
            
            if( $targeted_rate_id === $rate_key ) {
                unset($rates[$targeted_rate_id]);
            }
        }
        elseif ( 'free_shipping' === $rate->method_id ) {
            $free[$rate_key] = $rate;
        }
    }
    return ! empty( $free ) && ! $condition ? $free : $rates;
}

代码位于活动子主题(或活动主题)的functions.php 文件中.经测试有效.

Code goes in functions.php file of the active child theme (or active theme). Tested and works.

重要提示:保存代码后,清空购物车以刷新运费...

Important: Once code is saved, empty the cart to refresh shipping rates...

这篇关于在 WooCommerce 中有条件地隐藏运输方式的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆