Just thought i would add, i did try this in fuctions.php but it left a white space..
// disable featured image for pages.
if ( ‘page’ == get_post_type() ) {
$status = false;
}
return $status;
}
add_filter( ‘dfi_thumbnail_html’ , ‘disable_feattured_image_for_posts’ );
}