Tagged: ,

Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • #602902

    I have a simple website with two pages: About and Blog.

    “About” is set as the static frontpage.

    In the menu About is replaced by “Home.”

    How do I get About to appear as “About” and not “Home”?

    Thanks in advance!

    #602913

    Hi @tjcoffey4 ;
    a quick response, this topic may help you :
    hidden-page

    #602978

    Hi!

    Please refer to @begrafiks’ post above and if that does not help, please make sure that you go to Appearance > Menus, create your menu and check “Enfold main menu” under Menu Settings.

    @begrafiks
    thanks as always :)

    Regards,
    Yigit

    #603275

    I checked out the link suggested. If I read post correctly that person’s problem was a mis-match between the page title and permalink.

    This is not my problem.

    Page title: About
    Permalink: thomasjcoffey.com/about

    Any other suggestions?

    #603280

    Hi!

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

    add_filter('avf_title_args', 'fix_single_post_title', 10, 2);
    function fix_single_post_title($args,$id)
    {
        if(is_front_page())
        {
            $args['title'] = "About";
            $args['link'] = get_permalink($id);
            $args['heading'] = 'h1';
        }
    
        return $args;
    }
    

    Regards,
    Yigit

    #603510

    Yigit, I made the changes you suggested, clicked update, cleared the cache and then tested the site in Chrome and Firefox but both still show the “Home” in the menu, not “About.”

    Any other ideas?

    #603618

    Hey!

    Are you using any SEO plugin to your web site, which will be making issues with that?

    Best regards,
    Basilis

    #604117

    I use Yoast SEO.

    #604144

    Hey!

    Please go to Appearance > Menus and create a new menu and add your menu items in it and check “Enfold main menu” under Menu Settings and save :)

    Best regards,
    Yigit

    #604188

    That did it, Yigit! Thank you. Checking the Enfold Child Main Menu box worked

    #604472

    Hi!

    glad we could help. Let us know in a new ticket if you have some more questions related to the theme. We are happy to assist you.

    Cheers!
    Andy

Viewing 11 posts - 1 through 11 (of 11 total)
  • The topic ‘Menu changes "About" to "Home" automatically’ is closed to new replies.