Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1437697

    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!

    #1437728

    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

    #1439002

    Thank you, works great!

    #1439042

    Hi,

    No problem! Glad it worked. Please feel free to open another thread if you have more questions about the theme.

    Have a nice day.

    Best regards,
    Ismael

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Blog category page’ is closed to new replies.