1) Down load the page2cat plugin
2) edit the page2cat.php and finde lthe following (line 616-621)
HTML Code:
foreach ($matches[1] as $key =>$v0) {
$catposts = get_posts('category='.$v0."&numberposts=".$limit);
foreach($catposts as $single):
$output .= "<li><a href='".get_permalink($single->ID)."'>".$single->post_title."</a></li>";
endforeach;
3) comment out the line:
HTML Code:
$output .= "<li><a href='".get_permalink($single->ID)."'>".$single->post_title."</a></li>";
by putting two '/' ('// $output...') in front of it.
4) add the following line after it
HTML Code:
query_posts('cat='.$v0.'&showposts='.get_option('posts_per_page'));
5) save your changes and install the page2cat folder into the plugin folder
6) create a page following the instructions in the plugin
Normally the plugin creates a list/link to all the posts in the category you specify. The little change I gave will cause it to display the post instead of the post/title and link.