在我的 woocommerce 网站中,我在常规 WooCommerce 设置中启用了税收。
我想通过编程(使用任何挂钩)从我的商店、结账页面和订单电子邮件中禁用特定用户角色的税费。
我怎样才能实现这个目标?
谢谢
2020更新
您无法以编程方式禁用特定用户角色的 WooCommerce 税,但您可以为特定用户角色申请零税率。
首先您需要在 worpress 中设置此特定用户角色。如果是这样的话,假设这个自定义用户角色对于我的代码示例来说是
'resellers'
。
其次,您必须在 WooCommerce 设置中启用零税率:
然后对于每个国家,您都必须设置这个零税率:
第三 - 那么这个挂钩函数就可以解决问题了:
更新 - 自 WooCommerce 3 使用以下内容:
function zero_rate_for_custom_user_role( $tax_class, $product ) {
// Getting the current user
$current_user = wp_get_current_user();
$current_user_data = get_userdata($current_user->ID);
// <== <== <== <== <== <== <== Here you put your user role slug
if ( in_array( 'resellers', $current_user_data->roles ) )
$tax_class = 'Zero Rate';
return $tax_class;
}
add_filter( 'woocommerce_product_get_tax_class', 'wc_diff_rate_for_user', 10, 2 );
add_filter( 'woocommerce_product_variation_get_tax_class', 'wc_diff_rate_for_user', 10, 2 );
在 WooCommerce 版本 3 之前使用以下内容:
function zero_rate_for_custom_user_role( $tax_class, $product ) {
// Getting the current user
$current_user = wp_get_current_user();
$current_user_data = get_userdata($current_user->ID);
// <== <== <== <== <== <== <== Here you put your user role slug
if ( in_array( 'resellers', $current_user_data->roles ) )
$tax_class = 'Zero Rate';
return $tax_class;
}
add_filter( 'woocommerce_product_tax_class', 'zero_rate_for_custom_user_role', 10, 2 );
您只需要输入您想要的用户角色名称,而不是“经销商”。
此代码位于活动子主题(或主题)的functions.php 文件中,或者也位于任何插件文件中。
此代码已经过测试并且功能齐全。