Hi,
we use different categorys for our blog. The pages of every category show always the whole post content (please see the link below). It would be great just to show a short version of the posts (just picture and heading) or a part of the content and a “read more” link. How can I do this for the category pages?
Regards
Sandra
Hi tredition!
Try opening up /enfold/includes/loop-index.php and on line 30 you should see this.
$blog_content = !empty($avia_config['blog_content']) ? $avia_config['blog_content'] : "content";
Try adding this on the next line.
if (is_archive()) { $blog_content = "excerpt_read_more"; }
Cheers!
Elliott
At my version it’s line 8, but the solution works!
Thanks a lot!!