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

Posted

技术标签:

【中文标题】WooCommerce - 为某些特定用户角色启用“零税率”税类【英文标题】:WooCommerce - Enabling "Zero rate" tax class to some specific user roles 【发布时间】:2017-02-11 16:01:15 【问题描述】:

在 wy WooCommerce 网站上,我将向分销商经销商销售产品。问题是 经销商 是免税的,因此我需要一个自定义功能来为某些客户角色启用零税率(如果 WooCommerce 自己做这将是最佳的,但它没有)。

所以我的问题是我的代码完美无缺,只是如果客户是管理员或经销商,我不知道如何实施更改以计算零税。

这是我正在使用的代码:

function wc_diff_rate_for_user( $tax_class, $product ) 

    if ( is_user_logged_in() && current_user_can( 'administrator' ) ) 
        $tax_class = 'Zero Rate';
    
    return $tax_class;


add_filter( 'woocommerce_product_tax_class', 'wc_diff_rate_for_user', 1, 2 );

如何修改此代码以使其适用于该用户角色?

谢谢

【问题讨论】:

一个简单的 if 语句应该适合你。如果 $tax_class== '零税率' 则不计算额外税。否则,请计算额外税款。也许分享更多你的代码? 【参考方案1】:

2020 年更新

根据您的代码尝试此自定义功能,我首先获得当前用户角色。然后我在 if 语句中使用 in_array() php 条件函数将您的 2 个目标角色与当前用户角色进行比较。这样我就可以启用或不启用这个“零税率”税级。

代码如下:

function wc_diff_rate_for_user( $tax_class, $product ) 
    // Getting the current user 
    $current_user = wp_get_current_user();
    $current_user_data = get_userdata($current_user->ID);

    if ( in_array( 'administrator', $current_user_data->roles ) || in_array( 'reseller', $current_user_data->roles ) )
        $tax_class = 'Zero Rate';

    return $tax_class;

add_filter( 'woocommerce_product_tax_class', 'wc_diff_rate_for_user', 1, 2 );

更新 - 由于 WooCommerce 3 改用以下内容:

function wc_diff_rate_for_user( $tax_class, $product ) 
    // Getting the current user 
    $current_user = wp_get_current_user();
    $current_user_data = get_userdata($current_user->ID);

    if ( in_array( 'administrator', $current_user_data->roles ) || in_array( 'reseller', $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 );

此代码位于您的活动子主题(或主题)的 functions.php 文件中或任何插件文件中。

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

【讨论】:

一如既往,你是个天才……没有你我该怎么办……XD 非常有帮助,wc 大师。

以上是关于WooCommerce - 为某些特定用户角色启用“零税率”税类的主要内容,如果未能解决你的问题,请参考以下文章

Woocommerce 为特定用户角色设置最低订单

在 WooCommerce 中为特定用户角色创建订单时添加额外的客户注释

为 Woocommerce 中的特定用户角色自定义我的帐户新菜单项

在 Woocommerce 中隐藏特定用户角色的特定运输方式

在“运送到其他地址?”时为特定用户角色添加费用?已在 WooCommerce 结帐时检查

在 WooCommerce 中隐藏特定用户角色的增值税