Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #848437

    I would like to hide breadcrumb message “you are here” or translate it. I didn’t find any section to edit this at enfold settings.

    thanks in advance

    #848470

    Hey camisetaskatia,

    Please provide a link to the site/page in question. I believe the following should work though:

    
    .breadcrumb-trail{
    display: none;
    }

    Best regards,
    Jordan Shannon

    #849717

    I also want to translate the “search” word, to “pesquisar” in portuguese, is there some place I can edit these kind of content? like messages, etc.

    #849722

    Hi,

    Did the css that I provided to you first work?

    Best regards,
    Jordan Shannon

    #849808

    yes but instead of hiding this, i want to translate.

    #850006

    Hi,
    To translate the placeholder word “search”, to “pesquisar”
    Try adding this code to the end of your functions.php file in Appearance > Editor:

    function my_search_form($html)
    {
        return str_replace('Search', 'Pesquisar', $html);
    }
    add_filter('get_search_form', 'my_search_form');

    Best regards,
    Mike

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.