Php 如果在Woocommerce中的值为0,则隐藏自定义运费成本

Php 如果在Woocommerce中的值为0,则隐藏自定义运费成本,php,woocommerce,hide,cart,fee,Php,Woocommerce,Hide,Cart,Fee,在Woocommerce中,我使用费用API向购物车添加了额外的运输成本 我的代码是: add_action( 'woocommerce_cart_calculate_fees', 'pt_add_handling_fee' ); function pt_add_handling_fee() { $title = 'Maggiorazione Isole & Calabria'; global $woocommerce; $peso_totale = $woo

在Woocommerce中,我使用费用API向购物车添加了额外的运输成本

我的代码是:

add_action( 'woocommerce_cart_calculate_fees', 'pt_add_handling_fee' );
function pt_add_handling_fee() {

    $title = 'Maggiorazione Isole & Calabria';

    global $woocommerce;
    $peso_totale = $woocommerce->cart->cart_contents_weight;
    $provincia = $woocommerce->customer->get_shipping_state();
    // echo 'weight'.$woocommerce->cart->cart_contents_weight;
    // echo 'price'.$woocommerce->cart->subtotal;

    // Maggiorazione 5€ ogni 100kg per la Sardegna
    if ($peso_totale > 99 && ($provincia == "CA" or $provincia == "NU")) {
        $fee = $peso_totale / 100 * 5;
    }
    // Maggiorazione 3€ ogni 100kg per la Sicilia
    if ($peso_totale > 99 && ($provincia == "AG" or $provincia == "CL")) {
        $fee = $peso_totale / 100 * 3;
    }
    // Maggiorazione 2€ ogni 100kg per la Calabria
    if ($peso_totale > 99 && ($provincia == "CZ" or $provincia == "CS")) {
        $fee = $peso_totale / 100 * 2;
    }

     $woocommerce->cart->add_fee( $title, $fee, TRUE, 'standard' );
}
因此,如果总重量超过99公斤,我会对一些省份征收附加费

但问题是,对于其他省份来说,该费用的价值仍然是“0欧元”

当运输车总重量超过99 Kg时,如何使此费用仅适用于定义的省份


有可能吗?非常感谢您的帮助。

您的代码有点过时,
woocommerce\u cart\u calculate\u fees
操作挂钩将
WC\u cart
对象作为可用参数

global$woocommerce
$woocommerce->cart
$woocommerce->customer
现在只需替换为:

  • WC()->cart
    (WC\u cart对象的实例)
  • WC()->customer
    WC\u customer
    对象的实例)
要使费用仅适用于您的特定条件,请尝试以下重新访问的代码:

add_action( 'woocommerce_cart_calculate_fees', 'conditional_shipping_surcharge', 10, 1 );
function conditional_shipping_surcharge( $cart ) {

    $targeted_weight = 100; // Define the starting targeted weight
    $cart_weight     = $cart->get_cart_contents_weight();
    $shipping_state  = WC()->customer->get_shipping_state();
    $percent         = 0; // Initializing

    if ( $cart_weight >= $targeted_weight ) {
        // 5 € of surcharge per 100kg for Sardinia
        if ( in_array( $shipping_state, array('CA', 'NU') ) ) {
            $percent = 5;
        }
        // 3 € of surcharge per 100kg for Sicily
        elseif ( in_array( $shipping_state, array('AG', 'CL') ) ) {
            $percent = 3;
        }
        // 2 € of surcharge per 100kg for Calabria
        elseif ( in_array( $shipping_state, array('CZ', 'CS') ) ) {
            $percent = 2;
        }
    }

    if( $percent > 0 ){
        // Fee calculation
        $fee = $cart_weight * $percent / 100;

        // Add calculated fee (Taxable for "standart" default tax class)
        $cart->add_fee( __("Maggiorazione Isole & Calabria", "woocommerce"), $fee, true );
    }
}

代码进入活动子主题(或活动主题)的function.php文件。已测试并正常工作。

这还不清楚,这一行简单的代码还不够……所以请使用您的整个钩子函数,更好地解释该值是什么?没人能猜出你在想什么。