function myprefix_disable_header_logo() {
remove_action( 'wpex_hook_header_inner', 'wpex_header_logo' );
}
add_action( 'init', 'myprefix_disable_header_logo' );
Snippets: Remove The Header Logo
All PHP snippets should be added via a child theme's functions.php file.