Charge a conditional Delivery fee in WooCommerce 3
问题 This is my condition like: If subtotal <= certain amount && subtotal <= certain amount So if the subtotal matches this criteria then I want to charge a delivery fee which should also show in the email invoice. Currently this is my code: add_action( 'woocommerce_cart_calculate_fees','my_delivery_fee' ); function my_delivery_fee() { global $woocommerce; if ( is_admin() && ! defined( 'DOING_AJAX' ) ) return; $subtotal = $woocommerce->cart->subtotal; if(subtotal <= certain amount && subtotal <=