Tagged: 

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #951417

    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!

    #951987

    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

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.