Can anybody help me out if it's possible to make the form for joining a room invisible and to make the list of rooms take the entire space in the rooms tab. Please help me out.
Asked
Active
Viewed 184 times
1
-
resolved it by modifying converse.js file – abhijit Feb 11 '16 at 06:05
1 Answers
1
As far as I remember there is no config setting to do that, but you can hide the relevant section with CSS.
Something like this:
form.converse-form.add-chatroom {
display: None;
}
You'll probably also want to set auto_list_rooms to true
when you call converse.initialize
so that rooms are shown automatically (i.e. without having to click a button which won't be visible after you hide it).

JC Brand
- 2,652
- 18
- 18
-
thanks for the solution, i had done the but in js file. This is good one – abhijit Feb 11 '16 at 13:01