Here is how to remove the page title from single custom post types in OceanWP. Just replace “podcasts” with the name of your custom post type:
// Disable page title on single posts
function disable_title( $return ) {
if ( is_singular( 'podcasts') ) {
$return = false;
}
return $return
}
add_filter( 'ocean_display_page_header', 'disable_title' );