hi,
Title tabs in browsers is made “page” | “site name” with separator character |
The problem, for the home page, the title of the tab is | “site name”
and this title is displayed on the search engine.
How to remove the character | in the head title for the homepage?
thank you
Hi bicounet!
Please go to Enfold/framework/php folder and open function-set-avia-frontend.php file and edit
function avia_set_title_tag()
{
$title = get_bloginfo('name').' | ';
$title .= (is_front_page()) ? get_bloginfo('description') : wp_title('', false);
$title = apply_filters('avf_title_tag', $title, wp_title('', false));
return $title;
}
Regards,
Yigit