I edited the page.php file and you are correct it did work for my posts that are directly on a page. I see now on my posts that my index.php file is using excerpts. I changed to the_content and it works but my formatting on the page is off. The following code is now in the index.php file
<div class=”post-excerpt”>
<?php the_excerpt(); ?>
I changed the line
<?php the_excerpt(); ?> to
<?php the_content( $more_link_text, $strip_teaser, $more_file ); ?>
but am unsure what to do with the line that reads <div class=”post-excerpt”>
If I can figure that out, my problem should be solved. Thanks in advance for any further help.