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!
Hey rolfroyce!
Please see – http://kriesi.at/documentation/enfold/change-archive-categorytag-blog-style/
Best regards,
Yigit
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?
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
thanks, solved!