Dear,
1. If you want hide post meta, please go to 'Customizing -> Blog -> Post List' and un-check 'Show Post Meta'
2. If you want hide post image on blog page, please install and switch your site to use Jobmonster Child Theme then add custom code in file functions.php of Jobmonster Child theme.
add_filter('noo_has_featured_content', function($value, $post_id, $post_format, $post_type){
if(is_home() || is_post_type_archive('post') || is_tax( get_object_taxonomies( 'post' ) )){
return false;
}
return $value;
},10,4);
3. Sorry, the Blog is post archive page, it will display list post on your site and Jobmonster not support to custom it.
Best regards.