gpt4 book ai didi

php - 特定产品 ID 上每个用户角色的税级 "Zero rate"

转载 作者:可可西里 更新时间:2023-11-01 01:15:12 25 4
gpt4 key购买 nike

我得到了这个代码,无论他们订购什么,都可以对用户角色应用免税,这很好。

但现在我需要另一个用户角色来对特定产品 ID 应用免税,但我不确定如何实现。

我现在为特定用户角色的所有产品使用的免税代码是:

// Apply a different tax rate based on the user role.

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( 'userrolename', $current_user_data->roles ) )
$tax_class = 'Zero Rate';

return $tax_class;
}
add_filter( 'woocommerce_product_tax_class', 'wc_diff_rate_for_user', 1, 2 );
// Fin Apply a different tax rate based on the user role.

最佳答案

以下是将对某些定义的产品和某些定义的用户角色应用此“零税率”税级的代码:

add_filter( 'woocommerce_product_tax_class', 'wc_diff_rate_for_user', 1, 2 );
function wc_diff_rate_for_user( $tax_class, $product ) {

if ( is_admin() && ! defined( 'DOING_AJAX' ) )
return;

// Define HERE your targeted products IDs
$products_ids_arr = array(12 ,15, 24);

// Define HERE your targeted user roles
$users_role_arr = array('administrator', 'userrolename');

//Getting the current user data
$user_data = get_userdata(get_current_user_id());

foreach ($users_role_arr as $user_role)
if ( in_array( $user_role, $user_data->roles ) && in_array( $cart_item->id, $products_ids_arr ) ) {
$tax_class = 'Zero Rate';
break;
}

return $tax_class;

}

此代码已经过测试并且可以工作。

代码进入您的事件子主题(或主题)的任何 php 文件或任何插件 php 文件。

关于php - 特定产品 ID 上每个用户角色的税级 "Zero rate",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40871587/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com