Getting the Form Inside the Widget
-
I noticed when I installed the plugin and added it to the Sidebar, the bigbluebutton form was placed outside the widget.
Not sure if there was a reason for that, but on bigbluebutton-plugin.php starting on line 379 (I believe) I edited it to the following, moving the form inside the widget section and that handled it for me.
//================================================================================ //---------------------------------Widget----------------------------------------- //================================================================================ //Inserts a bigbluebutton widget on the siderbar of the blog function bigbluebutton_sidebar($args) { extract($args); echo $before_widget; echo $before_title.'Join Live Training Event'.$after_title; echo bigbluebutton_form($args); echo $after_widget; }
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Getting the Form Inside the Widget’ is closed to new replies.