Concerning the “Enfold” theme…
I cannot figure out why the “Blog Grid” is not being displayed correctly.
I also noticed that the title says, “Blog Grid – Latest News” when it should just say “Blog Grid”.
Just sent you a private email with the login credentials to see for yourself.
Look forward to your assistance.
Hey Anthony!
You can add this on functions.php:
add_filter('avf_title_args', 'avf_blog_title', 10, 2);
function avf_blog_title($args, $id) {
$args['title'] = 'Blog Grid';
return $args;
}
Regards,
Ismael
For reasons unknown, I did not need to use the code you suggested.
I was able to resolve this by going to :”Reading Settings” –> “Front page displays” –> and left the “Posts page” with nothing selected in the dropdown.
So the issues is resolved.
BUT, is this setting normal in order to get the Blog Grid to display ?
Hi!
Yes, that’s the normal setting. You can select the front page on the theme option page (Enfold > Theme Options) if necessary.
Cheers!
Peter