Hi there!
Is there any option to change/translate page title “You are here” in breadcrumbs (see attachment) to current page title name?
Thanks!![]()

Hi there!
Is there any option to change/translate page title “You are here” in breadcrumbs (see attachment) to current page title name?
Thanks!![]()

Hi there,
Thanks for reaching out.
What translation plugin do you use? That string is available on both __x__ and cornerstone text domain. But if you just wish to replace that string regardless of translation, then please add this code to your child theme’s functions.php with your translation
add_filter( 'gettext', 'replace_this_string', 20, 3 );
function replace_this_string( $translated_text, $text, $domain ) {
if ( $text == 'You Are Here' ) return 'YOUR TRANSLATION HERE';
return $translated_text;
}
Thanks!
Thanks for quick response!
You’re welcome.
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.