I really appreciate your response to my previous question.
I tried using the code you sent but it does not seem to work. Is there a way I can simply remove the (more..) completely.
Thank you! again
Read the article in the codex: https://codex.wordpress.org/Function_Reference/the_content
There are different ways to do that.
The article suggests:
If the_content() isn’t working as you desire (displaying the entire story when you only want the content above the <!-more->Quicktag, for example) you can override the behavior with global $more.
<?php
global $more; // Declare global $more (before the loop).
$more = 0; // Set (inside the loop) to display content above the more tag.
the_content(“More…”);
?>
You should put that code in the index.php and/or category.php before the
<?php
if ( have_posts() ) :