as i see it, excerpts also show in the category archive pages;
can you post a direct link to a category page, where the full posts show?
Thread Starter
Fotis
(@fotis)
yes, you ve right.
In categories excerpts appeare but doesn’t appear the read more button.
this is because the frontpage template (index.php) uses the_content() and you probably use the ‘more-tag’ when writing the posts; while the archive and category archive (archive.php) uses the_excerpt()
to have the categories archive show the same way as the front page, edit archive.php of your theme, and change this section:
<div class="entry">
<?php the_excerpt() ?>
</div>
to:
<div class="entry">
<?php the_content('<strong>Read more »</strong>'); ?>
</div>