在Woocommerce中不显示插件仅显示最高的运输费用

时间:2018-10-30 12:52:12

标签: php wordpress woocommerce

我只需要在WooCommerce结帐屏幕上显示最高的运输舱费用。如果用户在购物车中有两种产品具有不同的运输类别成本,则仅应计算较高的一种,而将后端设置设置为按类别计算。

我一直在对此进行一些研究,但是找不到解决方案,所以我自己编写了一个代码。它不起作用,结帐仍会计算购物车中产品的所有运输类费用。

function only_show_most_expensive_shipping_rate( $rates, $package ) {
    if ( is_admin() && ! defined( 'DOING_AJAX' ) )
      return $rates;

    $most_expensive_method = '';

    if ( is_array( $rates ) ) :
        foreach ( $rates as $key => $rate ) :

            if ( empty( $most_expensive_method ) || $rate->cost > $most_expensive_method->cost ) :
            $most_expensive_method = $rate;
            endif;
        endforeach;
    endif;
    // Return the most expensive rate when possible
    if ( ! empty( $most_expensive_method ) ) :
        return array( $most_expensive_method->id => $most_expensive_method );
    endif;
    return $rates;
}
add_action( 'woocommerce_package_rates', 'only_show_most_expensive_shipping_rate', 10, 2 );

谁能指出我做错了什么?谢谢

0 个答案:

没有答案