Take your website
To the next level
Discover our newly launched customization services and elevate your web projects to new heights.
Delegate tasks, save time, and unlock the power of professional WordPress outsourcing.

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