首页 > 解决方案 > woocommerce 条件字段

问题描述

当用户在 woocommerce 结帐中选择一个字段时,我无法弄清楚如何激活该功能,这是我的代码,我希望它仅在用户在结帐选择字段中选择 1 时才处于活动状态

add_action( 'woocommerce_cart_calculate_fees','conditional_add_fee' );
function conditional_add_fee() {
     global $woocommerce;

     if ( is_admin() && ! defined( 'DOING_AJAX' ) )
          return;
     $subtotal = $woocommerce->cart->subtotal;
     $fee_percentage = 0.22; // 22 percent
     $fee = number_format( round( $subtotal * $fee_percentage, 2 ), 2 ); // rounded to two decimal places to match currency formatting
     $woocommerce->cart->add_fee( 'IVA', $fee, true, 'standard' );
}

谢谢

标签: phpwordpresswoocommerce

解决方案


推荐阅读