Is it possible to remove/hide the “Interface” section for a specific custom group?
I’m sure there is some CSS-trick, but I don’t know how to do it — sorry.
Curiosity kills the cat, but why would you like to cripple UX to some users?
إعجابَين (2)
You can use this component to add CSS classes:
I’m sadly not around my computer to get the CSS tags, but it would probably be something like this
.group-GROUPNAME {
.INTERFACE-BUTTON {
display:none;
}
}
إعجاب واحد (1)
Thank you I will try that.
إعجاب واحد (1)
Hey, did this go alright for you? If you need any help now I’m here.
إعجاب واحد (1)
Yes, this one worked for me.
Thanks!
.group-XXXX {
.nav-interface {
display: none;
}
}
إعجاب واحد (1)
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.