cancel
Showing results for 
Search instead for 
Did you mean: 

How to disable "home page" setting menu item in user profile menu?

200million
Champ on-the-rise
Champ on-the-rise

Can you please guide me on how to disable below 2 options from the normal users' profile menu?

image

Thanks in advance

1 ACCEPTED ANSWER

sanjaybandhaniya
Elite Collaborator
Elite Collaborator

Hi,

You can override share-header.get.js by using extension point and remove both menu from array like below.

widgetUtils.deleteObjectFromArray(model.jsonModel, "id", "HEADER_USER_MENU_SET_DASHBOARD_AS_HOME");
widgetUtils.deleteObjectFromArray(model.jsonModel, "id", "HEADER_USER_MENU_HOME_PAGE_GROUP");

View answer in original post

2 REPLIES 2

sanjaybandhaniya
Elite Collaborator
Elite Collaborator

Hi,

You can override share-header.get.js by using extension point and remove both menu from array like below.

widgetUtils.deleteObjectFromArray(model.jsonModel, "id", "HEADER_USER_MENU_SET_DASHBOARD_AS_HOME");
widgetUtils.deleteObjectFromArray(model.jsonModel, "id", "HEADER_USER_MENU_HOME_PAGE_GROUP");

Hi Sanjay,

That's great, I did that for main menu items(such as tasks, shared files, etc) but did not know it could be done for these menu items also.

Thanks a lot. Will try this out and update here

best regards,