Tagged: archive page
Dear Enfold Users,
I found some postings about this topic, but I do not know how to do this:
I would like my category pages to look like my blog or at least as a blog grid layout. Is there any code I can use and where?
Thank you!
Hey Viktoria,
Please try adding this to your functions.php:
//change category page layout to blog grid style
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;
}
Best regards,
Mike