WooCommerce:在提供免费送货时隐藏除本地取货以外的其他送货方式

WooCommerce: Hide other shipping methods except local pickup when free shipping is available

我不想在免费送货时隐藏本地取货。删除本地取件没有任何意义,但我不知道如何使用官方代码不删除它。

/**
 * Hide shipping rates when free shipping is available.
 * Updated to support WooCommerce 2.6 Shipping Zones.
 *
 * @param array $rates Array of rates found for the package.
 * @return array
 */
function my_hide_shipping_when_free_is_available( $rates ) {
    $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', 'my_hide_shipping_when_free_is_available', 100 );

这是我删除 flat_rate1 的尝试,因为对我来说,这是付费选项。同样,我想保持免费送货和本地取货。

add_filter( 'woocommerce_package_rates', 'hide_shipping_except_local_when_free_is_available', 100 );
function hide_shipping_except_local_when_free_is_available($rates) {
    $free = array();
    foreach ($rates as $rate_id => $rate) {
        if ('free_shipping' === $rate->method_id) {
            foreach($rates as $rate_id => $rate) {
            if ('flat_rate1' === $rate->method_id )
                unset($rates[ $rate_id ]);
        }
            break;
        }
    }
    return !empty( $free ) ? $free : $rates;
}

要在免费送货可用时隐藏除当地取货和免费送货方式之外的所有送货方式,请使用以下内容:

add_filter( 'woocommerce_package_rates', 'hide_shipping_except_local_when_free_is_available', 100 );
function hide_shipping_except_local_when_free_is_available($rates) {
    $free = $local = array();

    foreach ( $rates as $rate_id => $rate ) {
        if ( 'free_shipping' === $rate->method_id ) {
            $free[ $rate_id ] = $rate;
        } elseif ( 'local_pickup' === $rate->method_id ) {
            $local[ $rate_id ] = $rate;
        }
    }
    return ! empty( $free ) ? array_merge( $free, $local ) : $rates;
}

代码进入活动子主题(或活动主题)的 functions.php 文件。已测试并有效。

相关:

  • WooCommerce - Hide other shipping methods when FREE SHIPPING is available