
SOLVED! I managed to fix it by creating an index.php, and placing the code snippet "Remove post content" there, so that it did not affect the individual post pages. Now, it is working beautifully.

Hey Dave,
index.php
is a risky one, as it is used as a fallback for other pages such as author page, archive page, category page etc...
If you want to modify only the front page, then create front-page.php
instead of using index.php
.
Cheers!

Thanks much, Joseph. I will create a front-page.php
, and use that instead.
There is really a great and helpful community here.

In your functions.php use this:
if ( is_front_page() ) {
// Remove post content
beans_remove_action( 'beans_post_content' );
}
m

Thank you, Mike. I appreciate the help.