How can I disable the "Invite" tab?
As administrators, we want complete control over our network's membership. Hence, we do not want members inviting people to the network on their own. Is it possible to disable the "Invite" tab or delete it?
2
people have this question
I have this question, too!
Tell me when someone answers.
The more people who ask this question, the more it gets noticed.
The more people who ask this question, the more it gets noticed.
The best answer from everyone
-
I don't think you can disable the invite page, meaning that one that knows the url will still be able to access it. But one thing you can do using CSS is to hide the Invite tab.
Just go to the Manage > Appearance section, then choose Advanced and paste the following at the end of the text box:
#xg_tab_invite{
display:none !important;
}
I’m confident
3 people say
this answers the question
Create a customer community for your own organization
Plans starting at $19/month
-
Inappropriate?I don't think you can disable the invite page, meaning that one that knows the url will still be able to access it. But one thing you can do using CSS is to hide the Invite tab.
Just go to the Manage > Appearance section, then choose Advanced and paste the following at the end of the text box:
#xg_tab_invite{
display:none !important;
}
I’m confident
3 people say
this answers the question
-
Obrigado, Fabricio!! This will work for now... Carol -
This CSS works fine for the custom design I have for Main and other pages, but when my users pick themes for their personal pages, the Invite tab still appears. Makes sense, but I wish their was a global CSS that would control basic div properties like display. Anyone have an answer? Thanks. -
I think your best bet would be the Analytics box, that will insert code at the bottom of every page. You can *probably* put some style rules in there or even a little bit of javascritpt to manipulate the pages DOM and remove that tab. -
Fabrico -- Thanks. It worked fine. I've never tacked styles to the butt-end of pages like that before. Live and learn! Cheers, Paul -
Inappropriate?it also pops up in a range of other places, such as in the box on the right, also if people add an email address of a non member to the invite people to group option, I *think* that might count as a network invite
-
I don't know of all the places the link can appear, but with firebug you can inspect the page's HTML code and find out which class or CSS rule you need to hide something...
For example, the invite link after Friends in the box on the right is inside a small tag that is inside a span tag with class name xj_count_friendRequestsReceived, so the css code to hide it would be something like:
.xj_count_friendRequestsReceived small{
display:none !important;
}
-
Inappropriate?do you know how to disable facebook button with css code?
-
Inappropriate?Hey guys.....I see that this question has been answered, but not fully. So here's a bit of code to completely remove all invite links as of now. cheers! =)
Note: as administrator you can still get to the invite dialogue by going to
Manage > Members > Invite More People
.xj_count_friendRequestsReceived small{
display:none !important;
}
.xg_module.module_members .xg_module_foot ul li.left{
display:none !important;
}
#welcome-invite{
display:none !important;
}
#xg_tab_invite{
display:none !important;
}
I’m happy to help
-
Inappropriate?I've tried to insert this code. But I still have the Invite-link on member-page and profile pages... Anyway to hide all invite links?
-
No i dont think you can, but what You can do is rename from the tab manager to a . or a _ that way.. -
Inappropriate?I renamed my invite tab "Connect", took away the /invite link, and use it as a super tab above my chat, email, groups, forum tabs (which I made sub tabs)
-
Inappropriate?more complete version:
.xj_no_friend_requests small,
.xj_count_friendRequestsReceived small,
.xg_module.module_members .xg_module_foot ul li.left,
#welcome-invite,
#xg_tab_invite,
.xg_widget_profiles li.right .xg_sprite-add{
display:none !important;
}
Loading Profile...








