Removing tax from products but only from home page product based on user group
-
Hi, I am new to woocommerce and trying to do some custom work. actually i want products displayed only on home page should be tax free. It should add tax in checkout process but before that all products displayed in shop or home page should display tax free based on user group.
I am using this
if (current_user_can(‘Retail’)) {
$woocommerce->customer->set_is_vat_exempt(true);
}
but it is only working for first product. Please help me if someone can. Thank you so much.
- The topic ‘Removing tax from products but only from home page product based on user group’ is closed to new replies.