Programatically Remove Title Bar on Avada WP Theme for CPT

add_action( 'template_redirect', 'avada_check_page' );
function avada_check_page() {
    if ( is_singular( 'product' ) ) {
        add_action( 'avada_override_current_page_title_bar', 'avada_remove_title_bar' );
    }
}

function avada_remove_title_bar() {

}

Replace ‘product’ with your post type