try add this to functions.php (child theme) or wp-content/meso-custom-functions.php
<?php
function meso_remove_custom_header() {
remove_action('bp_inside_header','mesocolumn_cih_overlay');
}
add_action('init','meso_remove_custom_header');
function mesocolumn_custom_cih_overlay() {
$header_overlay = get_theme_mod('custom_header_overlay');
if( get_header_image() && $header_overlay == 'Yes' ) {
echo '<div id="custom-img-header"><a href="'. get_home_url() . '"><img src="'. get_header_image() . '" alt="' . get_bloginfo('name') . '" /></a></div>';
}
}
add_action('bp_inside_header','mesocolumn_custom_cih_overlay');
?>