基于Woocommerce中运输类别的运输成本折扣

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

标签: php wordpress woocommerce discount shipping-method

我正在尝试对当前购物车中的产品的一种运输类别应用折扣。这将应用于结帐视图。

在Woocommerce后端中,该选项设置为单独对每个运输类别收费。另外,我仅使用一种称为“统一费率”的送货方式。

基于Override all shipping costs for a specific shipping class in Woocommerce,应使用以下折扣的代码:

add_filter('woocommerce_package_rates', 'shipping_class_null_shipping_costs', 10, 2);
function shipping_class_null_shipping_costs( $rates, $package ){

    if ( is_admin() && ! defined( 'DOING_AJAX' ) )
        return $rates;

    $shipping_class_slug = 'large'; // Your shipping class slug
    $found = false;

    // Loop through cart items and checking for the specific defined shipping class
    foreach( $package['contents'] as $cart_item ) {
        if( $cart_item['data']->get_shipping_class() == $shipping_class_slug )
            $found = true;
    }
    $percentage = 50; // 50%
    $subtotal = WC()->cart->get_cart_shipping_total();

    // Set shipping costs to 50% discount if shipping class is found
    if( $found ){
        foreach ( $rates as $rate_key => $rate ){
            $has_taxes = false;

            // Targetting "flat rate"
            if( 'flat_rate' === $rate->method_id ){
                $rates[$rate_key]->cost = $subtotal;
            }
        }       
    }
    return $rates;
}

但是无论我如何尝试,计算出的运输结果都是$ 0。

我在这里做错什么?对运输舱位应用折扣的正确方法是什么?

谢谢。

1 个答案:

答案 0 :(得分:1)

更新(仅关于设置)

要仅针对“平价”运输方式的“大型”运输类别添加折扣,您将必须:

  • 直接在您的运输方式费用上设置折扣价。
  • 计算选项 “按类别:为每个运输类别分别收取运输费用”

赞:

enter image description here


原始答案:

当在购物车项目中找到特定的已定义运输方式时,以下代码将为“统一费率”运输方式设置50%的运输成本。

  

测试:“运输”选项 tab ...

下的“运输”设置中的临时“ 启用调试模式

运输“统一费率”设置:应定义您的运输费用。

在下面的代码中,在每个函数中定义运输类别标签和自定义通知:

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

    // Your settings bellow
    $shipping_class = 'large'; // <=== Shipping class slug
    $percentage     = 50; //      <=== Discount percentage

    $discount_rate  = $percentage / 100;
    $is_found       = false;

    // Loop through cart items and checking for the specific defined shipping class
    foreach( $package['contents'] as $cart_item ) {
        if( $cart_item['data']->get_shipping_class() == $shipping_class )
            $is_found = true;
    }

    // Set shipping costs to 50% if shipping class is found
    if( $is_found ){
        foreach ( $rates as $rate_key => $rate ){
            $has_taxes = false;
            // Targeting "flat rate"
            if( 'flat_rate' === $rate->method_id  ){
                $rates[$rate_key]->cost = $rate->cost * $discount_rate;

                // Taxes rate cost (if enabled)
                foreach ($rates[$rate_key]->taxes as $key => $tax){
                    if( $tax > 0 ){
                        $has_taxes = true;
                        $taxes[$key] = $tax * $discount_rate;
                    }
                }
                if( $has_taxes )
                    $rates[$rate_key]->taxes = $taxes;
            }
        }
    }
    return $rates;
}

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

  

一旦测试一次,别忘了在运输设置中禁用“调试模式”