Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #341439

    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

    #341925

    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

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