- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-14-2024 06:18 AM
How do I remove a link from the footer in the portal
I want to remove the Contact Us.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-15-2024 06:21 AM
Managed to do this by modifying the record in Instance with Menu (sp_instance_menu) table.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-14-2024 07:00 AM
Hello,
To remove the "Contact Us" link from the footer, you first need to locate the widget responsible for rendering the footer. Start by going to the native side of ServiceNow, searching for "Portals" in the All navigation menu. Select the portal you want to edit, then click on Themes. Inside the theme settings, you'll find options for both the header and footer.
Open the footer, and in the HTML section, you'll find the code responsible for the "Contact Us" link.
like this :
<a href="/sp?id=contact_us" aria-label="Contact Us">Contact Us</a>
Once you've located the specific line of HTML, you can either remove it entirely or comment it out, depending on your needs. This will ensure that the "Contact Us" link is no longer displayed in the footer on the portal side.
Please share the exact line of HTML code that renders the "Contact Us" link, and I can offer a more precise solution.
I'm not an expert, but I've shared everything I know to assist you. If you found this response helpful, I would appreciate it if you could mark it as helpful.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-14-2024 07:08 AM
It depends on how it is set up but a good place to start would be:
Service Portal > Portals > (Pick your portal) > Theme > Footer
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-15-2024 06:21 AM
Managed to do this by modifying the record in Instance with Menu (sp_instance_menu) table.