Make filter condition unmodifiable in Portal

Susmitha1625
Tera Guru

Hello,

 

I want to make the Filter (breadcrumb) conditions unmodifiable in the Service Portal. 

 

Susmitha1625_0-1697641174766.png

 

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.

 

1 ACCEPTED SOLUTION

Vanderlei
Mega Sage

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

View solution in original post

1 REPLY 1

Vanderlei
Mega Sage

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