4

在我的 woocommerce 网站中,我在一般 WooCommerce 设置中启用了税。

我想从我的商店、结帐页面和订单电子邮件中以编程方式(使用任何挂钩)禁用特定用户角色的税收。

我怎么能做到这一点?

谢谢

4

1 回答 1

7

2020 年更新

您不能以编程方式为特定用户角色禁用 WooCommerce 税,但您可以为特定用户角色申请零税率。

首先,您需要在 wopress 中设置此特定用户角色。如果是这种情况,假设此自定义用户角色'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 文件中,也位于任何插件文件中。

此代码经过测试并且功能齐全。

参考:WooCommerce - 为某些特定用户角色启用“零税率”税类

于 2016-10-11T10:45:36.387 回答