@sentinal2k1: There is no option to do that. But there are 2 options that you might want to try:
1. Changing Archive layout to Full Content and Splitting content with more tag
— For this, go to “Appearance => Customize => Theme Options => Layout Options” and in “Archive Content Layout”, select the option “Show Full Content(No Featured Image)”. — Now, you will get the whole posts content in your blog page. But you can split content using more that. For that you can edit your post and add more tag <!--more-->
. For this, refer to http://devotepress.com/wordpress-writing-editing/how-to-split-content-using-the-more-tag-option/
2. Build Child theme and edit the code
— For this, you first need to build child theme. To know about child theme and also you can download Sample Catch Base child theme from http://catchthemes.com/blog/create-child-theme-wordpress/
— Then add the following code in your child theme functions.php
file:
function catchbase_unhook_functions() {
remove_action( 'catchbase_before_entry_container', 'catchbase_archive_content_image', 10 );
}
add_action( 'init','catchbase_unhook_functions');