- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-03-2022 10:49 AM
I have 1 Guided Tour setup on my Service Portal that auto starts.
To do this I had to enable the "com.snc.guided_tours.sp.enable" System Property.
This property also adds the "Tours" Menu item to the Portal. Disabling the system property above removes the "Tours" menu item but also prevents my Guided Tour from starting.
How would I keep my guided tour but remove the "Tours" menu item from the end user? Anyone have an idea?
I already checked the menu configuration and that menu item isn't in there.
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-03-2022 12:13 PM
Hi,
To remove the "Tours" menu item, without setting the associated property to "false", you'd want to follow instructions as shown here: https://community.servicenow.com/community?id=community_question&sys_id=a579bb11db3ec8586064eeb5ca96...
Keep in mind though that the "Tours" menu would help and allow people to go back through the tour again and access it that way, etc. so removing/hiding that prevents that accessibility. Just throwing that out there.
Please mark reply as Helpful/Correct, if applicable. Thanks!
Please consider marking my reply as Helpful and/or Accept Solution, if applicable. Thanks!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-03-2022 11:16 AM
I would insist you to watch this video of Guided tour setup it will help you in understanding what and which places to configure inorder for Tour to work properly.
https://m.youtube.com/watch?v=QXsWVAB5w3I
Mark my Answer as Correct and Helpful if it helps

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-03-2022 12:13 PM
Hi,
To remove the "Tours" menu item, without setting the associated property to "false", you'd want to follow instructions as shown here: https://community.servicenow.com/community?id=community_question&sys_id=a579bb11db3ec8586064eeb5ca96...
Keep in mind though that the "Tours" menu would help and allow people to go back through the tour again and access it that way, etc. so removing/hiding that prevents that accessibility. Just throwing that out there.
Please mark reply as Helpful/Correct, if applicable. Thanks!
Please consider marking my reply as Helpful and/or Accept Solution, if applicable. Thanks!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-04-2022 12:19 PM
Thanks Allen!
That was the answer I was looking for.
I added the following code to my Portal's CSS to get the menu item to hide:
nav #tour-dropdown {
display: none;
}
-Shant