Home Forums WoodMart support forum Change mini cart heading Reply To: Change mini cart heading

#585036

Hung Pham
Keymaster

Hi waynep16,

Please try to add the code below in the functions.php file in your child theme.

add_filter('gettext', function ($translation, $text, $domain) {
	if ($text === 'Shopping cart') {
		return 'Shopping basket';
	}
	return $translation;
}, 10, 3);

Regards,