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!
Hi @tjcoffey4 ;
a quick response, this topic may help you :
hidden-page
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
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?
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
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?
Hey!
Are you using any SEO plugin to your web site, which will be making issues with that?
Best regards,
Basilis
I use Yoast SEO.
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
That did it, Yigit! Thank you. Checking the Enfold Child Main Menu box worked
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