Hi,
I am having trouble setting up all category/archive pages.
I made it with home page and works great but now I want to do the same with all category/archive pages.
I created a grid page with Advanced Layout Builder.
When I set it up in the Enfold settings, I get a regular post list without photos, not a grid.
Hey mohito,
Here is the code you can put in your funtions.php
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;
}
If you need further assistance please let us know.
Best regards,
Victoria