Ability to hide/turn off 'Invite Members' button in groups so members can't just invite anyone they want.
M
Matt Proud
I don't want the ability for members to just blast and randomly invite people. This is an invite through me only community.
Log In
K
Kyle Pretorius
Hi we have the same Issue, please make it that not just any member can invite folks like they wish?
K
Keith Besherse
Also Hide member list and Hide Chat button.
K
Keith Besherse
Hide the Member list, Chat, and Invite Members buttons.
I am using CSS in Communities to hide functions that should be an option for the group admin to turn on or off depending on the purpose and culture of the community group.
We need a toggle in Settings where the group admin can turn off or on those features - Invite Members button, Chat, and Members.
K
Kylie Gorzalka
Keith Besherse would you be able to share the CSS you are using to hide the Members Tab and/or List?
K
Keith Besherse
Kylie Gorzalka CSS is in the description of this video: https://youtu.be/kd0vrUyqFnc
Thanks to Ameet Kang.
form#login-page-email-form [greater than sign] div:last-child {
display: none !important;
}
.bg-communities-background .n-button:nth-child(2) {
display: none !important;
}
And, here is the code for hide Chat courtesy of Ken Wood.
#communities-top-nav-bar-chats-web {
display: none !important;
visibility: hidden !important;
pointer-events: none !important;
}
Sites-Client Portal-Settings-Branding-Advanced-Custom CSS
Alternate code courtesy of Kevin Scott and Joe Fernando:
#invitation__btn {
display: none; / Initially hide the button /
}
#settings__btn + #invitation__btn {
display: block; / Show when it's after #settings__btn /
}
#settings__btn + #invitation__btn span.n-button__content {
display: flex; / Ensure Flexbox layout /
justify-content: center; / Horizontally center /
align-items: center; / Vertically center /
text-align: center; / Ensure fallback horizontal centering /
}
K
Keith Besherse
Nilasish Pal, for those of us who already have communities, this is way more important than the beautiful discovery splash page. We shouldn't need CSS to set the basic operations that make sense for our particular community. Function is more valuable than form. Shivam HighLevel Core Platform Sales & Marketing
K
Kevin Scott
Does it make sense to not allow people in the portal to see certain groups or request access? seems like anyone in a portal can just request access to any group and they can see them all. Making some invite only and specifically admin invite only those groups should not be visible imo. Maybe this should be a separate request?
P
Patrice Blain
YES PLEASE!