Hello Summer Sale!
Exclusive season-opening discount on TheGem theme.
Limited time offer.

Okay
  Public Ticket #3382101
Help on editing breadcrumble menu
Closed

Comments

  • Paivar started the conversation

    Hi!

    Would like to change the word HOME on my breadcrumbs menu into INICI can I do that?

    Thank you, for your time!

    3501158129.png


  •  7,280
    Oliver replied

    Hi,

    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, Oliver

  • Paivar replied

    Thank you very much Oliver, it works, all good now :)

  •  7,280
    Oliver replied

    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