Advertisement
businessdad

WooCommerce - Hide "inc. tax"/"inc. VAT" suffix

Sep 4th, 2017
188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.34 KB | None | 0 0
  1. /**
  2.  * WooCommerce - Remove "inc. tax"/"inc. VAT" suffix from cart.
  3.  * Need help customising the code for your need? Hire us on Codeable: https://aelia.co/hire_us
  4.  *
  5.  * @param $inc_tax_or_vat_suffix
  6.  * @return string
  7.  * @author Aelia
  8.  */
  9. add_filter('woocommerce_countries_inc_tax_or_vat', function($inc_tax_or_vat_suffix) {
  10.   return '';
  11. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement