I have created a blog for one of my websites.
When I click on one of the blog categories in the sidebar however the layout of the page is completely different than the main blog page.
Is there a way to make the layout of this page look exactly the same as the main blog page?
Hi envis!
Thank you for using Enfold.
Add this in the functions.php file:
add_filter('avf_blog_style','avia_change_category_blog_layout', 10, 2);
function avia_change_category_blog_layout($layout, $context){
if($context == 'archive') $layout = 'blog-grid';
return $layout;
}
Cheers!
Ismael