- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-18-2023 08:04 AM
Hello,
I want to make the Filter (breadcrumb) conditions unmodifiable in the Service Portal.
In the image above, Currently, I can click on the 'Home' and the portal redirects to the main Service Portal Homepage. But the users shouldn't be able to click on it. Please help me.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-19-2023 08:00 PM
Hi @Susmitha1625, how are you?
To achieve your goal, just go to Portals > Your portal
In the Css Variables field add the following code
.breadcrumbs{
pointer-events: none;
}
If this code doesn't work, try adding !important
.breadcrumbs{
pointer-events: none !important;
}
If my answer helped you, please mark my answer as helpful.
Vanderlei Catione Junior | LinkedIn
Senior ServicePortal Developer / TechLead at The Cloud People
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-19-2023 08:00 PM
Hi @Susmitha1625, how are you?
To achieve your goal, just go to Portals > Your portal
In the Css Variables field add the following code
.breadcrumbs{
pointer-events: none;
}
If this code doesn't work, try adding !important
.breadcrumbs{
pointer-events: none !important;
}
If my answer helped you, please mark my answer as helpful.
Vanderlei Catione Junior | LinkedIn
Senior ServicePortal Developer / TechLead at The Cloud People