Is it possible to hide the menu for SOME user...

Is it possible to hide the menu for SOME users, and allow it for others?

I am aware I can hide menu items from certain people, but I want there to be no menu at all for certain users…

Any ideas?

0 3 537
3 REPLIES 3

I’m afraid you are not able to do that. If you create your own menu view (like a launcher), you can hide that view though.

@Aleksi_Alkio Ah, you mean, create a menu view which means I can hide the ACTUAL menu. Then I can control the visibility of the menu view… yes…that makes sense…

Thanks for the idea.

Place one of these formula’s in the “SHOW if” if section of a view:

USEREMAIL() = "some_person@gmail.com"

for multiple entities use:

OR((USEREMAIL()=“some_person@gmail.com”),(USEREMAIL()=“some_other_person@gmail.com”))

You can also add the NOT function in front of the formula as well, like this, to prevent the view from being seen:

NOT(USEREMAIL() = "some_person@gmail.com")

or for multiple entities:

NOT(OR((USEREMAIL()=“some_person@gmail.com”),(USEREMAIL()=“some_other_person@gmail.com”))

Hope that helps.

Top Labels in this Space