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

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