How to hide "FOLLOW" button for specific table?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-05-2020 09:32 AM
Hi Everyone,
How to hide "Follow" button for specific table?. I don't want it to hide globally, I want it for specific table.
Thank you,
Rakesh

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-11-2020 03:52 AM
Nice solution from Willem, also the only correct answer for this topic. The answers with using Client Script or UI Policy can work, though are not the correct way to go.
Kind regards,
Mark
2020 ServiceNow Community MVP
2020 ServiceNow Developer MVP
---
LinkedIn
Community article list
Kind regards,
Mark Roethof
Independent ServiceNow Consultant
10x ServiceNow MVP
---
~444 Articles, Blogs, Videos, Podcasts, Share projects - Experiences from the field
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-07-2020 07:52 AM
Please use this in onLoad Client Script of your table
Ensure Isolate Script field is set to false. This field is set to true for client script; but you can make it false from list view.
Note: This approach uses DOM which is not recommended
function onLoad() {
//Type appropriate comment here, and begin script below
document.getElementById('connectFollowWidgetAction').style.display = 'none';
}
Regards
Ankur
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-10-2020 04:07 AM
Hi there,
Did this solve your question? Or do we need to follow-up on this?
Please mark this answer as correct if it solves your question. This will help others who are looking for a similar solution. Also marking this answer as correct takes the post of the unsolved list.
Thanks.
Kind regards,
Willem

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-10-2020 04:21 AM
Hello Reddy
Go to Properties and set the below-mentioed Property to "none" it will remove the buttons.I tried ,it is working on my instance.
Please Mark it helpful/correct if my answer helps in any way to resolve
your query.
Reach out to me if any more help required.
Regards
Yash.K.Agrawal
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-11-2020 03:21 AM
Hi Yash,
Thanks for the answer, but setting the property to none will hide the follow button globally.