Thank you for helping. And are you also looking the other messages?
hi
i have provide code for both student and instructor
anything i have left with?
you can ask that too
create course and all group can be hide with custom code
but the color of active tab is not an issue
this is default functionality
hi
to hide create course use this:
add_filter('wplms_course_settings',function($s){
$['instructor'] = 'manage_options';
return $s;
});
the s was missing
use this code:
add_filter('wplms_course_settings',function($s){
$s['instructor'] = 'manage_options';
return $s;
});
tested on local and it is working
hi
yes right this is correct
it is hiding all the controls for instructor
i have reported this and for now there is no provision is added in the API key to handle this
this will be possible in upcoming updates
The topic ‘Remove sections and customize’ is closed to new replies.