使用 WooCommerce,我正在使用Traveler高级主题
我需要在旅游和酒店中停用(TAX),并且我正在尝试使用此代码:
add_filter( 'woocommerce_product_tax_class', 'wc_diff_rate_for_user', 1, 2 );function wc_diff_rate_for_user( $tax_class, $cart_item ) {
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;}
此代码来自此答案:特定产品 ID 上每个用户角色的税级“零税率”
但是没有办法,这不是选择。我不能只为旅游和酒店停用税收。
我需要一些帮助,以了解如何在 WooCommerce 中仅为我的主题内的旅游和酒店实现禁用税。
重要更新
我正在使用这个小和平代码从购物车中输出我的自定义产品类型,其中我有 3 种不同的产品类型:
add_action('woocommerce_before_cart_table','output_cart_raw_data');
function output_cart_raw_data(){
$count = 0;
foreach(WC()->cart->get_cart() as $cart_item){
$count++;
echo 'Product ' . $count . ' has a post type of: ' . $cart_item['st_booking_data']['st_booking_post_type'] . '<br>;
}
}
它在我的购物车页面中输出(使用的产品类型):
Product 1 has a post type of: st_tours
Product 2 has a post type of: st_hotel
Product 3 has a post type of: st_activity
如何'Zero Tax'
激活st_tours
产品st_activity
类型?
谢谢