Best Answer

Manage Team Requests?

  • 17 February 2024
  • 4 replies
  • 42 views

Userlevel 2
Badge

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!

 

 

icon

Best answer by Bfarkas 21 February 2024, 17:51

View original

4 replies

Userlevel 7
Badge +7

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.

Userlevel 2
Badge

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

Userlevel 7
Badge +3

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;
}

 

Userlevel 2
Badge

Thank you!

Reply