Skip to main content

Greetings~

I can’t find any info on this. My Power users can see this under their user management. What is manage team requests? Where would someone put in a request that would appear here? More importantly, how can I hide this? Thank you!

 

 

This is for when users request to join a team. Depends on whether you have these options allowed or not but the sadly the option remains. Same for Pending Users (logged in as superadmin) even when you have no self-registrations or moderated registrations. You would need some CSS to hide that.


@lrnlab Thank you for the explanation. Anyone out there have any CSS to hide this?


This should work, note it will hide it for all users, and is based on the aria tag language which could change over time:

li:has([aria-label="Manage Team Requests"]) {
display: none;
}

 


Thank you!


Reply