Oliver
1
Hello all,
we would like to know if the following is possible in the Sendbird Chat App:
-
we would like to remove/hide the “create a new chat room/channel button”.
-
we would like to hide the “channel information button”.
-
moreover, we are currently using the developer plan and could not see the translation feature anywhere.
Thank you and greetings from Berlin
Oliver
Hello @Oliver, Welcome to Sendbird Community.
- To hide the “create a new chat room/channel” button, you can simply apply these CSS styles to override the default CSS.
.sendbird-channel-header .sendbird-channel-header__right-icon {
display: none !important;
}
- For hiding the channel info button, override the CSS styles with the following
.sendbird-chat-header .sendbird-chat-header__right__info {
display: none !important;
}
- To access the Translation feature, navigate to Application Settings → Chat → Features as demonstrated in the screenshot below.
Feel free to let me know if you need any additional help!