Removing blog page images

It sounds like you want to display only the excerpts on your blog home page. To do that, add is_home() to your conditional statement so that it looks like this:

<?php if ( is_archive() || is_search() || is_home() ) : // Only display excerpts for archives, search and blog home page. ?>

You can read more about what is_home() does here.