How to remove BIO link & My Org Chart from Service Portal, Profile page

Julie Gordon
Kilo Sage

Needing help on where & how to hide the BIO link & My Org Chart button on the Profile page of the Service Portal.  Please & thank you!

1 ACCEPTED SOLUTION

Julie , unfortunately I don't find a way to hide bio using CSS

 

You need to clone the user profile widget and modify the code like below.

1. portals> widgets > User Profile  > remove line 36 in HTML template.

find_real_file.png

 

after adding the above changes follow the steps below.

 

Portals > pages > user_profile > open in designer >  Replace user profile widget with your modified widget.

find_real_file.png

 

 

 

 

 

View solution in original post

4 REPLIES 4

SatheeshKumar
Kilo Sage

To hide my org chart button

add the below in Page specific CSS section of user_profile page.

Poratls > pages > user_profile >page specific CSS

#my_org_chart.widget-button {

display: none;

}

 

for bio link can you post screenshot of which link you are pointing to.

 

 

 

Julie Gordon
Kilo Sage

Satheesh-  Awesome.  That worked for the MyOrgChart button.  Any idea what to do with the Bio part?

find_real_file.png

Julie , unfortunately I don't find a way to hide bio using CSS

 

You need to clone the user profile widget and modify the code like below.

1. portals> widgets > User Profile  > remove line 36 in HTML template.

find_real_file.png

 

after adding the above changes follow the steps below.

 

Portals > pages > user_profile > open in designer >  Replace user profile widget with your modified widget.

find_real_file.png

 

 

 

 

 

Julie Gordon
Kilo Sage

Satheesh-  This works perfectly.  Thanks for your help!!