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?
I haven’t tried anything for this problem. So, I don’t have any idea about it.
2
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
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.
Click here to cancel reply.
2
Answers
Add the following lines in your current theme’s functions.php file:
You see this post here Changing Tax to GST within WordPress/WooCommerce
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.