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

    Hey,

    Love the Enold theme, works perfectly for everything I need to do.

    The only question I have, and maybe I have overlooked something somewhere, or maybe I need to really go in and customize these pages with a child theme page, is there an easy way to edit category pages and there layout and add various elements.

    I have looked for an option for it but maybe there is not an easy way to do this, looking for any suggestions, because I wanted to make the category pages a major part of what I am trying to do with the site, if I have to make seperate pages that is fine, but if there is an easy way to edit the page layout that would be even better.

    Thanks in advance for your time,
    Nick

    #332898

    Hey NLucano!

    Thank you for using Enfold.

    You can edit the archive.php file or you can use this filter to change the archive layout base on different blog styles:

    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;
    }

    Other available styles are blog-grid, multi-big and single-big.

    Cheers!
    Ismael

    #344669

    Would that filter go in the archive.php or in the functions.php

    Thank you

    #345160

    Hey!

    That will go on the functions.php file. For complex category or archive page modification, please visit Envato Studio or Werkpress.

    Cheers!
    Ismael

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