Php 按商品数量收取当地提货成本

Php 按商品数量收取当地提货成本,php,wordpress,woocommerce,cart,shipping,Php,Wordpress,Woocommerce,Cart,Shipping,我这样计算我的固定运费:x*[qty] 我还想将此方法用于我的本地拾取方法,但使用如上所示的功能不起作用 如何根据物料数量计算运输成本 WordPress:4.8.4/WooCommerce:3.1.1 链接到页面: 更新: 在第一个有用的答案之后,以下是我正在使用的代码: add_filter( 'woocommerce_package_rates', 'hide_shipping_method_based_on_shipping_class', 10, 2 ); function hide_

我这样计算我的固定运费:
x*[qty]

我还想将此方法用于我的
本地拾取
方法,但使用如上所示的功能不起作用

如何根据物料数量计算运输成本

WordPress:4.8.4/WooCommerce:3.1.1

链接到页面:

更新:

在第一个有用的答案之后,以下是我正在使用的代码:

add_filter( 'woocommerce_package_rates', 'hide_shipping_method_based_on_shipping_class', 10, 2 );
function hide_shipping_method_based_on_shipping_class( $rates, $package )
{
    if ( is_admin() && ! defined( 'DOING_AJAX' ) )
        return;

    ##  -----  1. Hiding shipping methods based on shipping class 92  -----  ##

    // HERE define your shipping class to find
    $class = 92;

    // HERE define the shipping methods you want to hide
    $method_key_ids = array('local_pickup:8');

    // Checking in cart items
    foreach( WC()->cart->get_cart() as $cart_item ){
        // If we find the shipping class
        if( $cart_item['data']->get_shipping_class_id() == $class ){
            foreach( $method_key_ids as $method_key_id ){
                unset($rates[$method_key_id]); // Remove the targeted methods
            }
            break; // Stop the loop
        }
    }

    ##  ----- 2. Hiding shipping methods based on shipping class 132  -----  ##

    // HERE define your shipping class to find
    $class = 132;

    // HERE define the shipping methods you want to hide
    $method_key_ids = array('local_pickup:2', 'local_pickup:3', 'local_pickup:4');

    // Checking in cart items
    foreach( WC()->cart->get_cart() as $cart_item ){
        // If we find the shipping class
        if( $cart_item['data']->get_shipping_class_id() == $class ){
            foreach( $method_key_ids as $method_key_id ){
                unset($rates[$method_key_id]); // Remove the targeted methods
            }
            break; // Stop the loop
        }
    }

    ##  -------  3. Charge local pickup costs per item quantity  -------  ##

    $cart_items_count = WC()->cart->get_cart_contents_count(); // Cart items count

    // Iterating through Shipping Methods
    foreach ( $rates as $rate_key => $rate ) {
        $method_id = $rate_values->method_id;
        $rate_id = $rate_values->id;

        // For "Local pickup" Shipping" Method only
        if ( 'local_pickup' === $method_id ) {
            if( ! empty( $rates[$rate_id]->cost && $rates[$rate_id]->cost > 0 ) ) {
                // Set the rate calculated cost based on cart items count
                $rates[$rate_id]->cost = number_format($rates[$rate_id]->cost * $cart_items_count, 2);
                // Taxes rate cost (if enabled)
                foreach ($rates[$rate_id]->taxes as $key => $tax){
                    if( $rates[$rate_id]->taxes[$key] > 0 ){ // set the new tax cost
                        $taxes[$key] = number_format( $rates[$rate_id]->taxes[$key] * $cart_items_count, 2 );
                        $has_taxes = true;
                    } else {
                        $has_taxes = false;
                    }
                }
                if( $has_taxes )
                    $rates[$rate_id]->taxes = $taxes;
            }
        }
    }

    return $rates;
}

您可以使用
woocommerce\u package\u rates
action hook中的自定义函数,在现有的自定义代码中实现这一点

使用以下代码,您的本地皮卡运输方法成本将乘以购物车项目总数:

add_filter( 'woocommerce_package_rates', 'customizing_shipping_methods', 10, 2 );
function customizing_shipping_methods( $rates, $package )
{
    if ( is_admin() && ! defined( 'DOING_AJAX' ) )
        return;

    ##  -----  1. Hiding shipping methods based on shipping class  -----  ##

    // HERE define your shipping class to find
    $class = 92;

    // HERE define the shipping methods you want to hide
    $method_key_ids = array('flat_rate:7', 'local_pickup:3');

    // Checking in cart items
    foreach( WC()->cart->get_cart() as $cart_item ){
        // If we find the shipping class
        if( $cart_item['data']->get_shipping_class_id() == $class ){
            foreach( $method_key_ids as $method_key_id ){
                unset($rates[$method_key_id]); // Remove the targeted methods
            }
            break; // Stop the loop
        }
    }

    ##  -------  2. Charge local pickup costs per item quantity  -------  ##

    $cart_items_count = WC()->cart->get_cart_contents_count(); // Cart items count

    // Iterating through Shipping Methods
    foreach ( $rates as $rate_key => $rate_values ) {
        $method_id = $rate_values->method_id;
        $rate_id = $rate_values->id;

        // For "Local pickup" Shipping" Method only
        if ( 'local_pickup' === $method_id ) {
            if( ! empty( $rates[$rate_id]->cost && $rates[$rate_id]->cost > 0 ) ) {
                // Set the rate calculated cost based on cart items count
                $rates[$rate_id]->cost = number_format($rates[$rate_id]->cost * $cart_items_count, 2);
                // Taxes rate cost (if enabled)
                foreach ($rates[$rate_id]->taxes as $key => $tax){
                    if( $rates[$rate_id]->taxes[$key] > 0 ){ // set the new tax cost
                        $taxes[$key] = number_format( $rates[$rate_id]->taxes[$key] * $cart_items_count, 2 );
                        $has_taxes = true;
                    } else {
                        $has_taxes = false;
                    }
                }
                if( $has_taxes )
                    $rates[$rate_id]->taxes = $taxes;
            }
        }
    }

    return $rates;
}
代码位于活动子主题(或主题)的function.php文件或任何插件文件中

测试和工作

有时,您可能需要刷新前往装运区域的装运方法,然后禁用/保存并重新启用/保存“固定费率”和“本地提货”装运方法


谢谢我试过你的代码,上面的部分工作得很好。不幸的是,“本地拾取部分”没有按预期工作。你有什么建议吗?我想可能代码没有像预期的那样工作,因为我们搜索
local\u-pickup
方法,但是这些方法的名称后面总是有一个数字,比如
local\u-pickup:3
,所以我把它改为
local\u-pickup:3
,看看这是否可行,但不幸的是它没有t@NiklasBuschner我已经更新了代码,测试并运行了…但是在此之前(一旦新代码被保存),请不要忘记按照我在我的答案末尾所建议的那样刷新装运方法…它现在也应该适用于您。