I found in another theme's forum this and changed in loop-index.php
this
<div class="entry-content"><br />
<?php<br />
if(strpos($avia_config['layout'], 'medium_image sidebar') !== false) echo $slider->display_small('blog');<br />
the_content(__('Read more →','avia_framework'));<br />
to this
<div class="entry-content"><br />
<?php<br />
if(strpos($avia_config['layout'], 'medium_image sidebar') !== false) echo $slider->display_small('blog');<br />
the_excerpt(__('Read more →','avia_framework'));<br />
This shows me my individual excerpt on a blog overview page. But:
a)
when I click the post title, then the complete post content is this individual excerpt only, and the actual post content is away,
b) my individual excerpt do not show "read more". How can I add this again, too, as it is the case when using the normal "more" tag - and how to limit its characters to, for example 50?
I have put around 100 words in the individual excerpts text box for testing it and in my functions.php I put this code, that I've found anywhere, but I don't know, if it is right:
<br />
/** Modify the length of post excerpts */<br />
add_filter( 'excerpt_length', 'custom_excerpt_length' );<br />
function custom_excerpt_length($length) {<br />
return 50; // pull first 50 words<br />
}<br />
Thanks.