Okay
  Print

Add course start date

this adds start date in Course information widget https://prnt.sc/UPUq652vSH9c

Add below code in functions.php child theme or use php code snippets plugin ---

add_filter('wplms_course_info_display_options',function($options){

$options['start_date'] = 'Start Date';

return $options;

});

add_action('wplms_course_info_content',function($id,$info){

if($info == 'start_date' && function_exists('bp_course_get_start_date')){

echo bp_course_get_start_date($course_id);

}

},10,2);