1

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.

Image showing the part to be made invisble

JC Brand
  • 2,652
  • 18
  • 18
abhijit
  • 187
  • 1
  • 1
  • 12

1 Answers1

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