- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-25-2022 09:54 AM
Is there a way to remove the option for "CMDB Workspace" in the banner? Currently testing the new San Diego release in sub-prod instances and was wondering if there was a way to remove this.
Solved! Go to Solution.
- 10,337 Views
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-25-2022 09:10 PM
Hi
go to /now/nav/ui/classic/params/target/sys_ux_experience_category.do%3Fsys_id%3Dafb4e3e173322010f0ca1e666bf6a726
You should see an entry in the related list "UX Application Category M2M":
Remove that entry. Then logout and login.
Kind regards
Maik
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-13-2023 03:02 AM
This was indeed the way I was able to remove it.
Many thanks!!
Regards
jacob.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-05-2022 07:58 AM
Thanks so much, It helped me.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-05-2022 07:21 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-18-2023 08:30 AM
Thanks for the URL.
I now am able to remove workspaces from the top menu item.
However I would like to remove the complete "Workspace" menu from the top as we are not using workspaces at this moment but would like to use the Polaris ui.
Is it possible to remove the complete menu from the top?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-19-2023 03:19 AM
I was able to do this, by disabling the OOB Business Rule: "Avoid duplicate menu configuration"
Then i opened a background script and ran it:
var gr = new GlideRecord('sys_polaris_menu_config');
gr.get('<<Insert Sys Id for the menu you want to disable>>');
gr.active = false;
gr.update();
Then i re-enabled the business rule.
This made my menu go away, and i can easily bring it back by reversing the steps above.