Add this code in WPLMS child theme – functions.php or WPLMS customizer – wplms_customizer.php
STEP 1 : Add a Multi – information field in Course settings metabox
STEP 2 : Display this information in Course details.
add_filter('wplms_course_details_widget','wplms_custom_course_details_information',9999999); function wplms_custom_course_details_information($details){ $custom_info = vibe_sanitize(get_post_meta(get_the_ID(),'vibe_course_details',false)); if(isset($custom_info) && is_array($custom_info)){ foreach($custom_info as $k=>$val){ $details[]='<li>'.htmlspecialchars_decode($val).'</li>'; } } return $details; }