提问者:小点点

在WooCommerce中提供免费送货服务时,仅禁用统一费率送货方式


当WooCommerce 3中提供免费配送时,我使用Hide specifics统一费率,轻微更改应答代码以隐藏除一种配送方式之外的所有配送方式。我想显示的唯一方法是“Woocommerce Advanced Shipping”插件中的费率。

我正在使用正确的费率ID等。。。

一切正常,但当客户尝试单击该发货方式时,它不会保持选中状态。它只是跳回免费送货。

我尝试过调试,也尝试过使用本地woocommerce统一费率ID的代码,它显示/能够很好地选择它。

add_filter( 'woocommerce_package_rates', 'conditionally_hide_shipping_methods', 100, 2 );
function conditionally_hide_shipping_methods( $rates, $package ) {

    $flat_rates_express = array( '2588' );

    $free = $flat2 = array();
    foreach ( $rates as $rate_key => $rate ) {
        // Updated Here To 
        if ( in_array( $rate->id, $flat_rates_express ) )
            $flat2[ $rate_key ] = $rate;
        if ( 'free_shipping:12' === $rate->id )
            $free[ $rate_key ] = $rate;
    }
        return ! empty( $free ) ? array_merge( $free, $flat2 ) : $rates;
}

ID我想保持显示:2588(自定义运费从插件)

当免费送货可用时,我如何禁用统一费率送货方法,并保持自定义送货费率(从插件)?


共1个答案

匿名用户

因为您有3种送货方式,1种免费送货方式,1种统一费率和1种自定义2588,所以当免费送货方式可用时,可以隐藏统一费率送货方式:

add_filter( 'woocommerce_package_rates', 'free_shipping_disable_flat_rate', 1000, 2 );
function free_shipping_disable_flat_rate( $rates, $package ) {
    // Here your free shipping rate Id
    $free_shipping_rate_id = 'free_shipping:12';

    // When your Free shipping method is available
    if ( array_key_exists( $free_shipping_rate_id, $rates ) ) {
        // Loop through shipping methods rates
        foreach ( $rates as $rate_key => $rate ) {
            // Removing "Flat rate" shipping method
            if ( 'flat_rate' === $rate->method_id ){
                unset($rates[$rate_key]);
            }
        }
    }
    return $rates;
}

代码functions.php活动子主题(或活动主题)的文件中。测试和工作。

刷新发货缓存:

  1. 此代码已保存在您的function.php文件中。
  2. 在运输区域设置中,禁用/保存任何运输方法,然后启用返回/保存。
    您完成了,您可以测试它。