提问者:小点点

Woocommerce-仅根据某些类别(或除某些类别外的所有购物车)的重量在购物车中添加附加费


一个朋友让我根据重量在购物车上增加额外的费用,并且只针对特定的类别(或者排除某些类别,没关系)。

话题是,对于夏天,他想在包装中加入冰来保持产品的低温(如牛奶、奶酪等)。

他还销售小玩意和参观工厂的导游等,所以他不想把额外的费用用在那些产品上。

根据“根据Woocommerce中的总重量添加自定义费用”的回答,我的代码版本如下,对整个购物车应用额外费用,不包括此费用中的访问产品,因为访问的重量显然为0。

但我不是代码专家,我不知道如何插入一个数组来包含“milk”和“cheese”之类的类别(或者用viceversa来排除“访问”和“gadgets”)。

在上瘾中,我的代码将费用增加了3kg(由于DHL/UPS/GLS等对数据包进行了大小调整)

/* Extra Fee based on weight */

add_action( 'woocommerce_cart_calculate_fees', 'shipping_weight_fee', 30, 1 );
function shipping_weight_fee( $cart ) {
    if ( is_admin() && ! defined( 'DOING_AJAX' ) )
        return;

    // Convert in grams
    $cart_weight = $cart->get_cart_contents_weight() * 1000;
    $fee = 0.00; // initial fee 


    // if cart is > 0 add €1,20 to initial fee by steps of 3000g
    if( $cart_weight > 0 ){
        for( $i = 0; $i < $cart_weight; $i += 3000 ){
            $fee += 1.20;
        }
    }    

    // add the fee / doesn't show extra fee if it's 0
    if ( !empty( $fee )) {
    $cart->add_fee( __( 'Extra for ice' ), $fee, false );
        }
}

最后一个问题是:为什么$i变量可以在结果没有任何变化的情况下0...1...1000000?代码似乎完全一样...

谢谢


共1个答案

匿名用户

以下代码基于:

  • 预定义类别
  • 基于产品重量(属于预定义类别的产品)
  • 逐步增加收费

(在代码中添加注释和解释)

function shipping_weight_fee( $cart ) {
    if ( is_admin() && ! defined( 'DOING_AJAX' ) )
        return;

    /* SETTINGS */

    // Specific categories
    $specific_categories = array( 'categorie-1', 'categorie-2' );

    // Initial fee
    $fee = 1.20;

    // Steps of kg
    $steps_of_kg = 3;

    /* END SETTINGS */

    // Set variable
    $total_weight = 0;

    // Loop though each cart item
    foreach ( $cart->get_cart() as $cart_item ) {
        // Get product id
        $product_id = $cart_item['product_id'];

        // Get weight
        $product_weight = $cart_item['data']->get_weight();

        // NOT empty & has certain category     
        if ( ! empty( $product_weight ) && has_term( $specific_categories, 'product_cat', $product_id ) ) {
            // Quantity
            $product_quantity = $cart_item['quantity'];

            // Add to total
            $total_weight += $product_weight * $product_quantity;
        }
    }

    if ( $total_weight > 0 ) {          
        $increase_by_steps = ceil( $total_weight / $steps_of_kg );

        // Add fee
        $cart->add_fee( __( 'Extra for ice' ), $fee * $increase_by_steps, false );      
    }
}
add_action( 'woocommerce_cart_calculate_fees', 'shipping_weight_fee', 10, 1 );