skip to Main Content

I’m working on one of the WordPress website and using woodmart theme. On the cart page it’s showing "Includes Rs.xyz VAT" but I want it to be GST. So, how can I do that?

enter image description here

I haven’t tried anything for this problem. So, I don’t have any idea about it.

2

Answers


  1. Add the following lines in your current theme’s functions.php file:

    add_filter( 'woocommerce_countries_inc_tax_or_vat', function () {
      return __( '(incl. GST)', 'woocommerce' );
    });
    

    You see this post here Changing Tax to GST within WordPress/WooCommerce

    Login or Signup to reply.
  2. Either you can use the Loco Translate plugin to change that text.

    https://xtemos.com/docs-topic/translate-woodmart-theme-with-loco-translate/

    Navigate to Loco -> Plugins -> WooCommerce and search for an appropriate text.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search