add_filter( 'wpex_sfwd-courses_single_blocks', function( $blocks ) {
unset( $blocks['media'] ); // remove media/featured image
unset( $blocks['meta'] ); // remove meta
return $blocks;
} );
Snippets: Remove Content Blocks from Learn Dash Courses
All PHP snippets should be added via a child theme's functions.php file.