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
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
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.
Hi,
Did the css that I provided to you first work?
Best regards,
Jordan Shannon
yes but instead of hiding this, i want to translate.
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