Tagged: , ,

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #462891

    Hi Enfold Theme!

    As blog homepage, i use one of your example pages.
    It shows the blog author image next to each post.
    on the righthand blog sidebar i have added a few widgets, one is the category widget.
    When you click on a category you get to a page which has a different layout.
    I want it to look the same as the blog homepage – showing the author picture.
    Is that possible with a quick hack?

    Thank you!

    #462900

    Hey rolfroyce!

    Please see – http://kriesi.at/documentation/enfold/change-archive-categorytag-blog-style/

    Best regards,
    Yigit

    #462987

    thx, can you take a look at the page – i added the code but it does not display the authors pictures. i think i have to change the single-small to something else, right?

    #463229

    Hey!

    Yes, you need to use the “multi-big” blog style to display the author:

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

    Cheers!
    Ismael

    #463636

    thanks, solved!

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘Blog Layout: Category View different to home blog Layout’ is closed to new replies.