Hi,
is there a way to display the category page as grid like the bolg main page?
Now if i filter by category 1 are all enties from category 1 are in a sausage on one page.
Thank you for helping!
Hey Stefan,
Thank you for the inquiry.
You can add this filter in the functions.php file to adjust the layout of the archive or category pages:
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,
Ismael
Thank you, works great!