Hi, on the product detail page I want to the wording ‘PRODUCT DESCRIPTION’ to ‘COURSE DESCRIPTION’. I can’t find it in the theme. anyone know where I should be looking?
This topic has 3 replies, 2 voices, and was last updated 10 years, 2 months ago ago by Eva Kemp
Hi, on the product detail page I want to the wording ‘PRODUCT DESCRIPTION’ to ‘COURSE DESCRIPTION’. I can’t find it in the theme. anyone know where I should be looking?
Never mind, sorted it. For anyone else trying to do this just add this to your functions.php
add_filter(‘gettext’, ‘translate_text’);
add_filter(‘ngettext’, ‘translate_text’);
function translate_text($translated) {
$translated = str_ireplace(‘PRODUCT DESCRIPTION’, ‘COURSE DESCRIPTION’, $translated);
return $translated;
}
Hello,
We’re glad you’ve found the solution.
Have a nice day.
Regards,
Eva Kemp.
The issue related to '‘change wording product page’' has been successfully resolved, and the topic is now closed for further responses