Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

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 );