If I go to a category the full posts are displayed.
How to show a resume with a read more?
Thanks.
Hey peterolle,
Please refer to the solution posted here:
https://kriesi.at/support/topic/category-archive-page-change-layout-to-show-excerpt/#post-459206
If you need further assistance please let us know.
Best regards,
Victoria
Thank you Victoria.
If you tell me exactly which one of the 10 recommendations and links in that thread I have to follow I can give it a try.
If not, please share exactly what I need (Category page with read more instead of full posts) and not 5 things combined in that topic. if you want to add tags and all archive things, please do so, as that will be needed and refers to the same.
Thanks.
Hi peterolle,
You can add this code to your funcitons.php
add_filter('avf_blog_style','avia_change_category_blog_layout', 10, 2);
function avia_change_category_blog_layout($layout, $context){
if($context == 'archive') $layout = 'single-big';
return $layout;
}
Then you’ll get the big image, excerpt, and the link to the blog post.
Best regards,
Victoria