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 « J'aime »
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 « J'aime »
Thank you I will try that.
1 « J'aime »
Hey, did this go alright for you? If you need any help now I’m here.
1 « J'aime »
Yes, this one worked for me.
Thanks!
.group-XXXX {
.nav-interface {
display: none;
}
}
1 « J'aime »
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.