Hi,
To disable course package please paste the following css in wp-admin>appearance>customize>custom css
#upload_course{display:none;}
.fa-times {margin-right:550px;}
Refer :
http://prntscr.com/ihrjns
To disable course category for instructors please paste the following code in wp-admin>plugin>editor>wplms customizer plugin
add_filter('wplms_course_creation_tabs',function($settings){
foreach ($settings as $key => $value) {
if($value['id'] == 'course-cat''){
unset($settings[$key]);
break;
}
}
return $settings;
},9999);