Comments Paivar started the conversationMay 30, 2023 at 8:31pmHi!Would like to change the word HOME on my breadcrumbs menu into INICI can I do that?Thank you, for your time! 7,092Oliver repliedMay 31, 2023 at 8:37amHi, Add this code to the functions.php of the child theme: function thegem_change_text( $translated_text ) { if ( $translated_text == 'Home' ) { $translated_text = 'Something'; } 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, Oliver1 LikePaivar repliedMay 31, 2023 at 9:31amThank you very much Oliver, it works, all good now :) 7,092Oliver repliedMay 31, 2023 at 9:42amYou're welcome!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!
Would like to change the word HOME on my breadcrumbs menu into INICI can I do that?
Thank you, for your time!
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
Thank you very much Oliver, it works, all good now :)
You're welcome!
Please note if you comment on your ticket before we reply, your ticket will be pushed down of the tickets list.
Regards, Oliver