This reply has been marked as private.
I have done this steps but the problem is that I can't be able to see for example my meeting recordings, that according to one of your support answers, are located in Wp Admin > Settings > BigBlueButton, location that I can't be able to find after I've followed your instructions above.
Do I need to configure anything else to see that?
Thanks in advance for your help.
Well the recording shows on wp-admin -> Rooms -> All rooms -> view any room and there on the front end it will show meeting recordings :
http://prntscr.com/saplmx
Thnak you, I have founded it now.
But I have a problem, if an instructor creates a meeting and enable the recording, once the meeting finishes and try to see the record, gets this error: This user does not have permission to display any rooms in a shortcode or widget.
Even the administrator of the site can't see the recording of this meeting in mention.
How can I let the instructors to publish their own meetings and let the students to see them?
Thank you again.
Please add this custom code in your wplms-customizer.php file in wplms customizer plugin :
add_action('init',function(){
$role_object = get_role( 'instructor' );
// add $cap capability to this role object
$role_object->add_cap( 'edit_bbb_rooms' );
$role_object1 = get_role( 'administrator' );
// add $cap capability to this role object
$role_object1->add_cap( 'edit_bbb_rooms' );
});
Sorry for the delay.
It works perfectly.
Thank you very much.