Home › Forums › Legacy Support › Support queries › Other issues › BigBlueButton & Other WPLMS Issues
- This topic has 5 replies, 4 voices, and was last updated 5 years, 8 months ago by Anshuman Sahu.
Viewing 6 posts - 1 through 6 (of 6 total)
-
AuthorPosts
-
February 17, 2019 at 1:19 pm #197209YourAcademyParticipantFollowing are the issues I am unable to resolve
- I am unable to locate Big Blue Button Credentials via putty which is this, Please help. Your youtube video regarding BBB setup is of no help.
- In the Group option under BBPress, I am unable to see any option to send invites. I have checked with every possible settings.
- Please restrict the option of front end course catagory creation. We dont want to give instructors the option of creating new course catagories while creating new coures like this.
- Is it possible to ask guest user for their email id before giving him the access to the free courses.
- Is it possible to generate automatic username using only email ID, I mean when user signups we only ask for the email id and the password and the username will be mailed to him automatically. It will ease the registration process.
February 18, 2019 at 6:44 am #197272Anshuman SahuKeymaster1 . Well please note that these are test server from bigbluebutton itself . You can just try the demo meetings on that you cannot modify it on your own . You would need to buy a separate hosting and then setup Bigbluebutton on that . refer : https://bigbluebutton.org/commercial-support/ 2 . to send invites please refer : https://codex.buddypress.org/administrator-guide/groups/#send-invites 3 . to restrict add new categories from front end please share your site url , admin credentials in private reply to check this issue at your end .: add_filter('wplms_front_end_new_tax_cap',function ($bool,$field){ if(!current_user_can('manage_options') && $field['id']=='course-cat'){ $bool = false; } return $bool; },10,2); 4 . im sorry currently not possible . 5 . well that would result in many bogus users in your site . Also many of our customers wont need this as a student might leave the site when they are asked for their email ,what's the meaning of guest user then when you are asking about his email .February 18, 2019 at 10:15 am #197318YourAcademyParticipantThis reply has been marked as private.February 19, 2019 at 12:16 pm #197497MkModeratorGo to wp-admin -> plugins -> editor-> wplms-customizer plugin-> and add following code below in wplms-customizer.php : add_filter('wplms_front_end_new_tax_cap',function ($bool,$field){ if(!current_user_can('manage_options') && $field['id']=='course-cat'){ $bool = false; } return $bool; },10,2); If still you are facing any problem please reply.February 25, 2019 at 12:34 pm #198318ig2teamParticipantHey we just changed our username to ig2team. Now- Thanks for the code to limit front end course creation categories, we also need to restrict add new categories in course location tab and course level.
- Also we need to limit group creation option at the front end.
- We are getting error 404 & 500 majority of the time, the page appears only after hitting refresh 2-3 times. Please help in this regard.
- We have setup the Big Blue Button and integrated with the wplms theme.
- Now its working fine at the course sidebar widget, but if applied within the course as shown in thw wplms big blue button video, its not working.
February 26, 2019 at 6:38 am #198426Anshuman SahuKeymaster1 . Please remove the code previously given to remove add new option in course category field and add this updated code at same place : add_filter('wplms_front_end_new_tax_cap',function ($bool,$field){ if(!current_user_can('manage_options') && ($field['id']=='course-cat' || $field['id']=='location' || $field['id']=='level')){ $bool = false; } return $bool; },10,2); 2 . Well that is not available as of now . 3 . for 404 errors please try resaving permalinks . To know origin of 500 errors please share your server php error log with us . BBB : 1 . & 2 . for bbb please refer : https://wplms.io/support/knowledge-base/wplms-bbb-addon/ -
AuthorPosts
Viewing 6 posts - 1 through 6 (of 6 total)
- The topic ‘BigBlueButton & Other WPLMS Issues’ is closed to new replies.