The main posts Archive page and the post category archive pages are not retaining the same format. Main archive page has small images to left, category archive pages do not. Please advise fix.
Hey scarlettr8!
Can you send us a WordPress login so we can take a closer look?
Have you done any customizations?
Cheers!
Elliott
Using posts page as template.
Hi!
Hmm, I try to login but it keeps timing out for me. The frontend loads fine though. Can you check with your hosting provider?
Cheers!
Elliott
One of your other staff changed the password. Try it again with pw attached.
Enfold is a very slow theme. I have used many, many themes and Enfold is by far the slowest. Be great if you could do something about that.
Hi!
We have made the changes in Enfold > Blog Layout
Please check out the site and let us know.
Cheers!
Vinay
Thanks, is there no way to accomplish it using the advanced layout? Now there is no title on the main News page, only the category pages have titles now.
Hey!
We set the main blog page to use the advance layout builder and then added this code in the functions.php file:
add_filter('avf_blog_style','avf_blog_style_mod', 10, 2);
function avf_blog_style_mod($layout, $context){
if($context == 'archive') $layout = 'single-small';
return $layout;
}
The archive and the main blog page should have the same layout now.
Cheers!
Ismael
Thank you very much.