Hello,
Is there a way with the theme options to change the shop name to products for the breadcrumbs links ?
Thank you.
This topic has 2 replies, 2 voices, and was last updated 13 hours, 14 minutes ago ago by Luca Rossi
Hello,
Is there a way with the theme options to change the shop name to products for the breadcrumbs links ?
Thank you.
Hi @mitys,
Please try adding this custom code under functions.php file locates in your child theme:
function n2t_text_strings( $translated_text, $text, $domain ) {
switch ( $translated_text ) {
case 'Shop' :
$translated_text = 'Your Custom Text Will Go Here';
break;
}
return $translated_text;
}
add_filter( 'gettext', 'n2t_text_strings', 20, 3 );
Hope it helps!
You must be logged in to reply to this topic.Log in/Sign up