Point 1: https://docs.wplms.io/instructor-guide/instructor-guide#a-2-adding-video-type-unit
Point 2:
The issue is due to wordpress update. Install “Enable jquery migrate helper” plugin from plugins > add new
and activate this plugin
Then in wplms customizer plugin > wplms-custmizer.php
Add this code
add_action( 'admin_enqueue_scripts', 'enqueue_jquery_for_select2');
function enqueue_jquery_for_select2(){
wp_enqueue_style('select2', 'https://cdnjs.cloudflare.com/ajax/libs/select2/4.0.3/css/select2.min.css' );
wp_enqueue_script('select2', 'https://cdnjs.cloudflare.com/ajax/libs/select2/4.0.3/js/select2.min.js', array('jquery') );
}