How to hide join meeting information button located at the top of the meeting room?

Description
I have to avoid showing any meeting information on a meeting room. I would like to hide the meeting info button. Is there any config parameter to hide the meeting info button for web SDK? Thanks :slight_smile:

Which version?
Web SDK 1.7.8

Screenshots
Captura de pantalla 2020-05-27 a las 12.40.09

They don’t have settings for a lot of these things, but it’s easy enough to do with css:

.meeting-info-icon__icon-wrap {
display: none;
}

Hope that helps!

2 Likes

Thanks for the solution @jbonifaci!

@danifrontdev, we do not have a built in way to hide the information button, but you can use JS or CSS to hide it.

-Tommy