通过 WooCommerce 中的挂钩有条件地更改产品税 class
Conditionally change products tax class via hooks in WooCommerce
大约 18 个月前,我在我的 WooCommerce 商店中实施了一个 b2b 区域。最近我更新了所有插件和 wordpress 本身。切换可变产品的税收 class 不再有效。
下面的代码到目前为止工作,但停止工作。我错过了什么?
add_filter('woocommerce_product_get_price', 'switch_price', 99, 2);
add_filter('woocommerce_product_variation_get_price', 'switch_price', 99, 2);
function switch_price($price, $product){
if(isset($_COOKIE["customerType"])){
if($_COOKIE["customerType"] == "business"){
$product->set_tax_class("Zero Rate");
}
}
return $price;
}
为了让它工作,你最好通过专用的相关复合钩子来定位 WC_Product
方法 get_tax_class()
,这样:
add_filter('woocommerce_product_get_tax_class', 'switch_product_tax_class', 100, 2 );
add_filter('woocommerce_product_variation_get_tax_class', 'switch_product_tax_class', 100, 2 );
function switch_product_tax_class( $tax_class, $product ){
if( isset($_COOKIE["customerType"]) && $_COOKIE["customerType"] == 'business' ){
return "Zero Rate";
}
return $tax_class;
}
代码进入您的活动子主题(或活动主题)的 functions.php 文件。已测试并有效。
基于WC_Customer
is_vat_exempt
属性,您也可以尝试使用以下代替:
add_action( 'template_redirect', 'vat_exempt_b2b_customers' );
function vat_exempt_b2b_customers() {
if( isset($_COOKIE["customerType"]) && $_COOKIE["customerType"] === 'business'
&& ! WC()->customer->is_vat_exempt() ){
WC()->customer->set_is_vat_exempt( true );
}
}
代码进入您的活动子主题(或活动主题)的 functions.php 文件。
大约 18 个月前,我在我的 WooCommerce 商店中实施了一个 b2b 区域。最近我更新了所有插件和 wordpress 本身。切换可变产品的税收 class 不再有效。 下面的代码到目前为止工作,但停止工作。我错过了什么?
add_filter('woocommerce_product_get_price', 'switch_price', 99, 2);
add_filter('woocommerce_product_variation_get_price', 'switch_price', 99, 2);
function switch_price($price, $product){
if(isset($_COOKIE["customerType"])){
if($_COOKIE["customerType"] == "business"){
$product->set_tax_class("Zero Rate");
}
}
return $price;
}
为了让它工作,你最好通过专用的相关复合钩子来定位 WC_Product
方法 get_tax_class()
,这样:
add_filter('woocommerce_product_get_tax_class', 'switch_product_tax_class', 100, 2 );
add_filter('woocommerce_product_variation_get_tax_class', 'switch_product_tax_class', 100, 2 );
function switch_product_tax_class( $tax_class, $product ){
if( isset($_COOKIE["customerType"]) && $_COOKIE["customerType"] == 'business' ){
return "Zero Rate";
}
return $tax_class;
}
代码进入您的活动子主题(或活动主题)的 functions.php 文件。已测试并有效。
基于WC_Customer
is_vat_exempt
属性,您也可以尝试使用以下代替:
add_action( 'template_redirect', 'vat_exempt_b2b_customers' );
function vat_exempt_b2b_customers() {
if( isset($_COOKIE["customerType"]) && $_COOKIE["customerType"] === 'business'
&& ! WC()->customer->is_vat_exempt() ){
WC()->customer->set_is_vat_exempt( true );
}
}
代码进入您的活动子主题(或活动主题)的 functions.php 文件。