If you are willing to rename the Label “TAX” in the Minicart on the checkout page, then  WP Travel plugin provides the feature regarding renaming the Label Tax in the Minicart using a filter code.

To rename the Label “TAX”  in the Minicart on the checkout page, please add the following filter given code in the functions.php file of your child theme.

function wp_travel_tax_rename( $args ) {
	$args['bookings']['price_tax'] = __( 'Your Text goes here', 'wp-travel' );
	return $args;
	}
add_filter( 'wp_travel_strings', 'wp_travel_tax_rename' ); 

For detail information regarding how to create a child theme, please refer to our Knowledgebase.

After adding Filter code:

Also, if you want to learn more about the filter hook that is used to rename fields on the checkout page, please once refer specific hook page.

Further, if you liked this article, then please subscribe to our YouTube Channel for WordPress video tutorials. You can also find us on FacebookInstagram, and Twitter.

Additionally, if you have any queries, please submit them to our Contact page.