-
AuthorPosts
-
March 24, 2016 at 9:33 am #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!
March 24, 2016 at 10:05 am #602913Hi @tjcoffey4 ;
a quick response, this topic may help you :
hidden-pageMarch 24, 2016 at 1:05 pm #602978Hi!
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,
YigitMarch 24, 2016 at 5:38 pm #603275I 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/aboutAny other suggestions?
March 24, 2016 at 5:45 pm #603280Hi!
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,
YigitMarch 25, 2016 at 12:27 am #603510Yigit, 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?
March 25, 2016 at 10:21 am #603618Hey!
Are you using any SEO plugin to your web site, which will be making issues with that?
Best regards,
BasilisMarch 28, 2016 at 10:21 pm #604117I use Yoast SEO.
March 28, 2016 at 10:49 pm #604144Hey!
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,
YigitMarch 29, 2016 at 1:02 am #604188That did it, Yigit! Thank you. Checking the Enfold Child Main Menu box worked
March 29, 2016 at 1:07 pm #604472Hi!
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 -
AuthorPosts
- The topic ‘Menu changes "About" to "Home" automatically’ is closed to new replies.
