Disabling the "app user" menu for end users

Hi all!

Is there any way to disable the "app user" menu entirely for end users? We'd like to keep the end experience as simple as possible for our end users to avoid potentially confusing them with all of Retool's functionality (although as an editor I appreciate all the features).

I've already managed to limit some functionality related to the menu (e.g. disable audit trail and hide page showing list of user emails in settings), but this would be a nice touch if it was possible.

1 Like

Hi there!

Happy to help here. Can you share a screenshot of the "app user" menu you are referring to?

Cheers,
Chris

Hey Chris,

Attached an image - it's basically the small expandable menu that "floats" in the corner when you are in end user mode.

Screen Shot 2021-09-23 at 3.56.27 PM

Screen Shot 2021-09-23 at 3.56.23 PM

Hey wanted to quickly follow-up - OK if it's not easily doable, just wanted to ask in case there might be a workaround I'm missing.

@alc15492 one thing you could do is use custom CSS to get rid of it. Click the three dots at the top of your app -> scripts and styles -> CSS and drop this in there:

div._3bEXZ.ant-dropdown-trigger.retool-dropdown { 
	display: none;
}

Should work - let me know!

This is amazing, thank you!!

1 Like