patrickbln
Forum Replies Created
-
Forum: Plugins
In reply to: [BigBlueButton] viewer join without password and recordingsHi, joining rooms like this is normally not possible out of the box. What you could do is the following. Install https://wordpress.org/plugins/insert-php-code-snippet/ for generating php shortcodes to insert at another place. then add the following code:
$meta_nonce = wp_create_nonce( 'bbb_join_room_meta_nonce' ); echo"<form id=\"joinroom\" method=\"post\" action=\"https://YOUR.DOMAIN/wp-admin/admin-post.php\" class=\"validate\"> <input type=\"hidden\" name=\"action\" value=\"join_room\"> <input id=\"bbb_join_room_id\" type=\"hidden\" name=\"room_id\" value=\"YOURROOMID\"> <input type=\"hidden\" id=\"bbb_join_room_meta_nonce\" name=\"bbb_join_room_meta_nonce\" value=\"$meta_nonce\"> <input type=\"hidden\" name=\"REQUEST_URI\" value=\"https://YOUR.DOMAIN/loggedout/\"> <input type=\"hidden\" name=\"bbb_meeting_username\" aria-labelledby=\"bbb_meeting_name_label\" class=\"bbb-join-room-input\" value=\"USERNAME\"> <input type=\"hidden\" name=\"bbb_meeting_access_code\" aria-labelledby=\"bbb_meeting_access_code_label\" class=\"bbb-join-room-input\" value=\"YOURJOINCODE\"> <input type=\"submit\" value=\"Enter Room\"> </form>";Make sure you replace the values in UPPERCASE letters
YOUR.DOMAIN
YOUR.DOMAIN
YOURROOMID
USERNAME
YOURJOINCODEAs for the recordings, i am not sure at the moment…
Kind regards
Patrick- This reply was modified 6 years, 1 month ago by patrickbln.
- This reply was modified 6 years, 1 month ago by patrickbln.
Forum: Plugins
In reply to: [BigBlueButton] Enable Typing Mathematical equationsThere is no such function integreated with BBB but you can either uload a presentation upfront, use the whiteboard or combine those two… I think a combination makes most sense… also he could use an ipad/android tabled to directly write on the whiteboard wich works pretty well π
ah, i remember now, for me it was a custom created user who was logged in but could not see the rooms, once i gave him permission everythign worked… So thats not very helpfull for your problem tho π trying to deactivate all other plugins for testing might be a good idea tho
everything seems to be correct then, sorry i cant help π maybe something is wrong with thepermissions even if you should have all capabilitys, but its hard to say… maybe you can check with user role editor?
hmm i just checked, works for me π can you post your code here? i remember vaguely that i run through this error but can not remember how i fixed it…
Forum: Plugins
In reply to: [BigBlueButton] Internal Message with Video ChatHi sorinv
It would be possible but imho it would take a lot of customisation. If you just want a 1:1 video chat solution i would look into a solution without a central server, so anything webrtc releated…
BBB is more for learning, so one to many or many to many, but not or 1:1 (would work also tho…)
Forum: Plugins
In reply to: [BigBlueButton] AdminThat works in general, just open the 2 rooms in 2 different browser tabs…
Forum: Plugins
In reply to: [BigBlueButton] Restrict rooms by user roleDisclaimer: I could be totally wrong here as i am not a good developer!
Hey braehler, as far i understand the plugin there is no easy way to do it.
When i am not wrong, the tool does not differntiate between different rooms. So if a loggedin user has the right to join a room he has this right for all rooms. So you cant that a role per room… (please correct me if i am wrong here)my approach would be this one: you have to extend the plugin`s API. you need another field… for example update_post_meta( $post_id, ‘bbb-room-access-roles’, $myCustomRole);
while displaying the room only if user has the correspond role… it might be a lot of custom coding and there also might be better ways, but this would be my aproach…Forum: Plugins
In reply to: [BigBlueButton] Creating a button of bbb in the wp menuhey,
as far as i know you need a form to join a room, i am not sure if wordpress menus support forms at all… maybe you could add a widget there? other than that i have no ideea unfortunatelly π Its more a wordpress menu problem i guess. You could modify your theme to archive this, but as far as i know there is no easy way…
Forum: Plugins
In reply to: [Random User IDs] Does it work wit user_register?to clarify: i am aware that it will only work for newly registered users tho, thats ok π
solved – not a support question –
Forum: Plugins
In reply to: [BigBlueButton] Where are the recordings listed?There are some shortcodes on the mainpage here, (the drop down faq)
there you can see the shortcode how to list rooms
[bigbluebutton type="recording" token="token1, token2"]where token1 is the rooms name eg z141
also the recordings are shown on the room post type if the user has the capabilitys
Forum: Plugins
In reply to: [BigBlueButton] “JOIN” Button Look and DesignYou can edit the label with a translation plugin, for example loco translate. for making it bigger you need to apply some custom css for example
.bbb-button {
font-size: 40px;
}Forum: Plugins
In reply to: [BigBlueButton] Any shortcode available for bbb ? i need to show in a pageThe shortcodes are on the page of the plugin
https://de.wordpress.org/plugins/bigbluebutton/
for example [bigbluebutton token=βtoken1,token2β³]
where token1 means the room. a token for example would be z124 where 124 is the post id of the room
Not sure about this one, have you also tryed the other permissions like “read_bbb_room”?