在Woocommerce中保持最高的统一运费和本地取件费用

时间:2019-01-02 15:16:49

标签: php wordpress woocommerce shipping-method

我正试图在购物车中显示最高的运输成本。我为此找到了一个不错的小片段:

function only_show_most_expensive_shipping_rate( $rates, $package ) {
    $most_expensive_method = '';
    $new_rates = array();
    // Loop through shipping rates
    if ( is_array( $rates ) ) {
        foreach ( $rates as $key => $rate ) {   
         // Set variables when the rate is more expensive than the one saved
         if ( empty( $most_expensive_method ) || $rate->cost > $most_expensive_method->cost ){
            $most_expensive_method = $rate;
         }

        }
    }
    // Return the most expensive rate when possible
    if ( ! empty( $most_expensive_method ) ){
       /**  
        ** Keep local pickup if it's present.
        **/
        foreach ( $rates as $rate_id => $rate ) {
            if ('local_pickup' === $rate->method_id ) {
                $new_rates[ $rate_id ] = $rate;
                break;
            }
        }
        return array( $most_expensive_method->id => $most_expensive_method );
    }
    return $rates;
}
add_action('woocommerce_package_rates', 'only_show_most_expensive_shipping_rate', 10, 2); 

但是,此代码段也隐藏了“本地取件”运输方式。

为什么上述方法不起作用?现在,它仅显示最高的运输类别/价格,而隐藏所有其他类别/价格,包括提货方法。

是因为两个数组吗?我没有看到任何错误提示。

任何帮助都将不胜感激!

1 个答案:

答案 0 :(得分:1)

以下内容将保持最高的统一运输费用和本地取件运输方式:

add_action('woocommerce_package_rates', 'keep_highest_flat_rate_cost', 10, 2);
function keep_highest_flat_rate_cost( $rates, $package ) {
    $flat_rate_costs = [];

    // Loop through shipping methods rates
    foreach ( $rates as $key_rate => $rate ) {
        // Targeting only "Flat rate" type shipping methods
        if ( ! in_array( $rate->method_id, ['local_pickup', 'free_shipping'] ) ) {
            // Store the Rate ID keys with corresponding costs in an indexed array
            $flat_rate_costs[$key_rate] = $rate->cost;
        }
    }
    // Sorting "Flat rate" costs in DESC order
    arsort($flat_rate_costs);

    // Remove the highest cost from the array
    array_shift($flat_rate_costs);

    // Loop through remaining "Flat rate" shipping methods to remove them all
    foreach ( $flat_rate_costs as $key_rate => $cost){
        unset($rates[$key_rate]);
    }
    return $rates;
}

代码进入您的活动子主题(或活动主题)的function.php文件中。经过测试,可以正常工作。

  

您应该需要刷新运输缓存:
  1)首先确保代码已经保存在您的function.php文件中。
  2)在“运送设置”中,输入运送区域:禁用任何运输方式并“保存”,然后重新启用并“保存”。 您已完成。