Tax To GST label Changer
A light plugin to change tax name to GST for Indian user
add_filter( 'gettext', function( $translation, $text, $domain ) { if ( $domain == 'woocommerce' ) { if ( $text == '(VAT)' ) { $translation = '(GST)'; } } return $translation; }, 10, 3 );