强制免费送货,而不会在WooCommerce中隐藏所有其他送货选项

时间:2019-04-27 19:46:16

标签: php wordpress woocommerce cart shipping-method

在Woocommerce中,我们使用以下代码隐藏除免费送货以外的所有送货方式:

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

现在,我们希望保留Express运输以及本地取件。但是,应该预先选择免费送货。

有人知道我们如何自定义代码吗?

我们的送货方式费率编号是:

  • 正常投放(Versandkosten): legacy_flat_rate
  • 快递(Expressversand)legacy_flat_rateexpress
  • 免费送货(kostenloser Versand)legacy_free_shipping
  • 本地取件(Abholung vor Ort)legacy_local_pickup

1 个答案:

答案 0 :(得分:1)

要仅隐藏“正常送货”,则在“免费送货”可用时,您将需要一些不同的东西:

add_filter( 'woocommerce_package_rates', 'show_hide_shipping_methods', 100 );
function show_hide_shipping_methods( $rates ) {
    // When "Free shipping" is available
    if( isset($rates['legacy_free_shipping']) && isset($rates['legacy_flat_rate']) ) {
        // Hide normal flat rate
        unset($rates['legacy_flat_rate']);
    }
    return $rates;
}

以下内容将“免费送货”设置为默认所选的送货方式:

add_filter( 'woocommerce_shipping_chosen_method', 'set_default_chosen_shipping_method', 10, 3 );
function set_default_chosen_shipping_method( $default, $rates, $chosen_method ) {
    if( isset($rates['legacy_free_shipping']) ) {
        $default = 'legacy_free_shipping';
    }
    return $default;
}

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

  

刷新运输缓存: (必需)

     
      
  1. 此代码已保存在活动主题的function.php文件中。
  2.   
  3. 购物车是空的
  4.   
  5. 在运输区域设置中,禁用/保存任何运输方式,然后启用“后退” /保存。
  6.