Hi
The [more] hyperlink on resumed posts only shows in the first page.
When list a category, it's posts do not show the [more] link, and it’s full version can only be read by clicking their title.
This is a major usability no-no. Was this my mistake? What did I do wrong? Is there any way out?
Thanks!
MAC
Sounds like you need to edit the theme's category template and add '<?php the_content();?>` just after the post title.
Thanks once again esmi!
It fixed it. I was getting a dose of my own medicine!
In an previous experiment I'd replaced that line by this condition, and it was left there, forgotten and inherited trough several templates…
' <?php if(is_category() || is_archive()) {
the_excerpt();
} else {
the_content();
} ?>?
And of course the condition was doing its job...
Thanks Again!
MAC :)