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

    Hi, I wonder if I can control or change the way a category is shown which is the blog style I choose. Can I make the blog look one way and the categories look another way?

    #354168

    Hey DROR!

    Thank you for using Enfold.

    You can use this filter on functions.php to change the blog style of archive pages:

    add_filter('avf_blog_style','avia_change_archive_blog_layout', 10, 2); 
    function avia_change_archive_blog_layout($layout, $context){
    if($context == 'archive') $layout = 'single-small';
    return $layout;
    }

    Different blog styles are (single-small, single-big, blog-grid, multi-big).

    Best regards,
    Ismael

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