F
Filament10mo ago
TiBiBa

Possibility to hide sign out option in user menu?

Hi! Our admin panel created with Filament is guarded by an IAP and we don't need the logout functionality. I'm looking for a way to disable the logout option in the user menu bar. Does anyone have a suggestion how to implement this? Thanks in advance!
Solution:
As it is nested just taking the last child doesn't work. The following however does: ``` .fi-user-menu > :last-child > :last-child { display: none; }...
Jump to solution
4 Replies
toeknee
toeknee10mo ago
Just use CSS..
TiBiBa
TiBiBa10mo ago
I thought so as well, but how to distinguish the logout item from the other items? It does not have any unique class or id to style for.
toeknee
toeknee10mo ago
It's always the last item? so: :last-child
Solution
TiBiBa
TiBiBa10mo ago
As it is nested just taking the last child doesn't work. The following however does:
.fi-user-menu > :last-child > :last-child {
display: none;
}
.fi-user-menu > :last-child > :last-child {
display: none;
}
Want results from more Discord servers?
Add your server
More Posts