add_action( 'wpex_hook_site_logo_inner', function() { ?> EXAMPLE CONTENT <?php } );
Overlay header exceptions
If you want global overlay header but on hoepage you want to have not template beneath?
add_filter( 'wpex_overlay_header_template', function( $template_id ) {
if ( is_front_page() ) {
$template_id = ''; // you can set it to none and just add the content you want on the homepage.
}
return $template_id;
} );

