Actually found the answer here:
https://www.ads-software.com/support/topic/show-1-entire-post-on-a-page?replies=3
However, it really doesn’t tell you the how-to do it.
So here’s my explanation.
1. Go to the plugin editor of WP.
2. Change the drop-down in the upper right to the Posts-in-Page plugin.
3. Click Select to accept the change.
4. On the right side list after the content changes, click on the posts-in-page/posts_loop_template.php to edit it.
5. Once it loads in the editor, look for the section that says: <!-- This is the output of the META information -->
6. Comment out everything from the first div to the first bottom div like this:
<!-- <div class="entry-utility">
<?php if ( count( get_the_category() ) ) : ?>
<span class="cat-links">
<?php printf( __( '<span class="%1$s">Posted in</span> %2$s', 'twentyten' ), 'entry-utility-prep entry-utility-prep-cat-links', get_the_category_list( ', ' ) ); ?>
</span>
<span class="meta-sep">|</span>
<?php endif; ?>
<?php
$tags_list = get_the_tag_list( '', ', ' );
if ( $tags_list ):
?>
<span class="tag-links">
<?php printf( __( '<span class="%1$s">Tagged</span> %2$s', 'twentyten' ), 'entry-utility-prep entry-utility-prep-tag-links', $tags_list ); ?>
</span>
<span class="meta-sep">|</span>
<?php endif; ?>
<span class="comments-link"><?php comments_popup_link( __( 'Leave a comment', 'twentyten' ), __( '1 Comment', 'twentyten' ), __( '% Comments', 'twentyten' ) ); ?></span>
<?php edit_post_link( __( 'Edit', 'twentyten' ), '<span class="meta-sep">|</span> <span class="edit-link">', '</span>' ); ?>
</div> -->
That totally removes the all meta data and puts only the posts visible.
Hope this helps.
Debbie