Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #624099

    Hello

    Sorry for my lack of terminology, but I’m wondering how to change the title of my site when it is displayed on a browser tab. right now it is just displaying a “l”

    Thank you

    #624106

    Hey EverettSchuster,

    Thanks for getting in touch with us!

    That title should be coming from the title set in the WordPress General settings. Please go to Settings -> General and change the site title.

    If you still need further assistance, could you please provide a link and login details to your site, so that we can have a closer look. You can place the information in the Private Content section of your reply.

    Best regards,
    Jordan Powell

    #632408

    It actually includes the page title too. How can I change it so it ONLY displays what’s in Settings > General site title?

    I tried the solution posted here in the functions.php child theme, but no luck https://kriesi.at/support/topic/title-the-which-show-up-on-browsers-tabs-and-descriptions/

    #633286

    Hey!

    Please add following code to Functions.php file in Appearance > Editor

    add_filter('avf_title_tag','avia_new_title');
    function avia_new_title() {
    $title = get_bloginfo('name');
    return $title; 
    }

    Regards,
    Yigit

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