- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-24-2019 07:52 AM
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!
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-24-2019 05:10 PM
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.
after adding the above changes follow the steps below.
Portals > pages > user_profile > open in designer > Replace user profile widget with your modified widget.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-24-2019 08:12 AM
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.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-24-2019 11:05 AM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-24-2019 05:10 PM
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.
after adding the above changes follow the steps below.
Portals > pages > user_profile > open in designer > Replace user profile widget with your modified widget.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-26-2019 07:29 AM
Satheesh- This works perfectly. Thanks for your help!!