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

    Hi,

    I use a custom blog page for my website and have used the grid layout to display the posts. However on my category pages the layout is much different. I would like to carry the same layout on the categories page as well. Is there a way to update this?

    Thank you

    #684863

    Hi tvlleaders!

    Thank you for using Enfold.

    Please add this in the functions.php file:

    add_filter('avf_blog_style','avia_change_category_blog_layout', 10, 2); 
    function avia_change_category_blog_layout($layout, $context){
    if($context == 'archive') $layout = 'bog-grid';
    return $layout;
    }

    Cheers!
    Ismael

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