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 526
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