我需要根据小计金额应用不同的税级而不是WooCommerce标准税级。如果小计金额小于特定值,则将不同的税级应用于购物车。我已将以下代码应用于我的孩子theme's function.php
。但它也不会起作用。任何帮助将不胜感激。
add_filter( 'woocommerce_product_tax_class', 'big_apple_get_tax_class', 1, 2 );
function big_apple_get_tax_class( $tax_class, $product ) {
if ( WC()->cart->subtotal <= 110 )
$tax_class = 'Zero Rate';
return $tax_class;
}