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 #3036079
breadcrumbs language
Closed

Comments

  • 23desarrollos started the conversation

    Hi,

    breadcrumbs show "home" but the page name is "inicio". Could you tell me how to show the name of the page?

    Thank you

  •  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 = '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