Comments 23desarrollos started the conversationMay 2, 2022 at 10:27pmHi,breadcrumbs show "home" but the page name is "inicio". Could you tell me how to show the name of the page?Thank you 7,092Oliver repliedMay 3, 2022 at 7:25amHI,Add this code to the functions.php of the child theme: function thegem_change_text( $translated_text ) { if ( $translated_text == 'Home' ) { $translated_text = 'inicio'; } return $translated_text; } add_filter( 'gettext', 'thegem_change_text', 20 ); Please note if you comment on your ticket before we reply, your ticket will be pushed down of the tickets list. Regards, Oliver Sign in to reply ...
Hi,
breadcrumbs show "home" but the page name is "inicio". Could you tell me how to show the name of the page?
Thank you
HI,
Add this code to the functions.php of the child theme:
Please note if you comment on your ticket before we reply, your ticket will be pushed down of the tickets list.
Regards, Oliver