BigBlueButton & Other WPLMS Issues

Home Forums Legacy Support Support queries Other issues BigBlueButton & Other WPLMS Issues

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #197209
    YourAcademy
    Participant
    Following are the issues I am unable to resolve
    1. 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.
    2. In the Group option under BBPress, I am unable to see any option to send invites. I have checked with every possible settings.
    3. 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.
    4. Is it possible to ask guest user for their email id before giving him the access to the free courses.
    5. 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.
    #197272
    Anshuman Sahu
    Keymaster
    1 . 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 .
    #197318
    YourAcademy
    Participant
    This reply has been marked as private.
    #197497
    Mk
    Moderator
    Go 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.
    #198318
    ig2team
    Participant
    Hey we just changed our username to ig2team. Now
    1. 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.
    2. Also we need to limit group creation option at the front end.
    3. 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.
    Big Blue Button Issue:
    1. We have setup the Big Blue Button and integrated with the wplms theme.
    2. 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.
    #198426
    Anshuman Sahu
    Keymaster
    1 . 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/  
Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘BigBlueButton & Other WPLMS Issues’ is closed to new replies.