Skip to main content

Chat Members Count?

Hello guys, do you know how to hide chat members count or the list of participants in a chat?

Lukas List

If you enable only Moderator and Admins in the settings, it will be hidden above the chat, but unfortunately it will still be in the right sidebar.

Fabio Pinna

Lukas ListΒ exactly. I disabled the members vies in general settings but it's still showing in the chat. I know it's a chat, so everybody has to be able to see other members, but at least I'd like to hide their amount.

Lukas List

Fabio Pinna In the middle column? The administrator always displays it, enclosed is a screenshot... log in with a test user and see if it is shown...

+1

Drive Zone

If globally, what about CSS: display: none;

Lukas List

Drive ZoneΒ Insert this code into the customization... or you can deactivate the entire right column

.fcom_right_sidebar .fcom_right_sidebar_wrap .fcomc_thread_details .fcomc_thread_header .fcomc_thread_user {
display: none !important;
}

Fabio Pinna

Lukas ListΒ Great! It worked. But now it's appearing beside the name of the chat:

Fabio Pinna

I've added this too and it worked:
.fcomc_title_wrap .fcomc_title_status {
display: none !important;
}

Lukas List

Fabio PinnaΒ important: watch with a test user

middle column
is usually only visible in the admin or moderator if marked in the settings.

hide complete right column

.fcomc_thread_wrap .fcomc_thread_header .fcomc_thread_actions .fcomc_collapse_rightbar {
display: none !important;
}