Is it possible to disable guided tours on one service portal?

Drew8
Tera Guru

We have 2 service portals one for HR and one for ITSM. We only want guided tours on one of them. I have seen the guided tour properties but that will disable it for both portals. Is it possible to only disable it for one portal?

1 ACCEPTED SOLUTION

Hello @chrisperry , what I ended up doing was disabling it in the portal header CSS script on the sp_header_footer table. I added

nav #tour-dropdown {
display: none;
}

This disabled it in our primary portal while leaving it in our secondary one.

View solution in original post

6 REPLIES 6

Barrilito van D
Kilo Guru

Hi drewjm,

You can set that via a system setting 'com.snc.guided_tours.sp.enable' See the documentation here.

  


 

If you think my answer put you in the right direction or you appreciated my effort, please mark the response as Helpful (👍). That way other people in the community will probably be triggered to read the responses too. If my answer solved your issue, please mark my response as Correct (). In the list of question people like me that want to help out will know your question was already answered and others that are curious to the answer know a good answer is given in the thread.
Thanks in advance! Good luck!

chrisperry
Giga Sage

Hey @drewjm , did you ever figure out a solution for this?  We are running into the same issue where the guided tours seem to be an all or nothing feature -- either all of the service portals have it active, or none of them do.

If this answer is helpful please mark correct and helpful!

Regards,
Chris Perry

Hello @chrisperry , what I ended up doing was disabling the tours in the CSS script of the sp_header_footer. I added 

nav #tour-dropdown {
display: none;
}

and it disabled it from our primary instance while remaining on our secondary.

 

Hello @chrisperry , what I ended up doing was disabling it in the portal header CSS script on the sp_header_footer table. I added

nav #tour-dropdown {
display: none;
}

This disabled it in our primary portal while leaving it in our secondary one.