Woocommerce – hide tax from basket
-
Hi,
is it possible to hide the tax information on the basket.
I tried already several code snippets but didnt work, the usless tax information is showing as you can see on the picture here https://ibb.co/5k4PdgwLast code i used destroid the webpage:
add_filter(‘wc_tax_enabled’, ‘disable_tax_on_basket_page’);function disable_tax_on_basket_page($enabled) {
if (is_basket()) {
return false;
}
return $enabled;
}
Thanks for Help.
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Woocommerce – hide tax from basket’ is closed to new replies.