Ok after many tries I managed to do it.
If anybody else wants to archive the same thing here’s how to:
You need to add the following to the functions.php file of your childtheme:
// REMOVE HEADER REPLACEMENT ACTION
function child_remove_parent_function() {
remove_action( 'wp_head', 'hemingway_rewritten_featured_image_headers',999 );
}
add_action( 'wp_head', 'child_remove_parent_function' );
Manrax