Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-13-2019 07:06 PM
Hi,
Anyone know how to hide the Special Instructions and Delivery Information in the Order confirmation page in service portal?
Thank you.
Solved! Go to Solution.
Labels:
- Labels:
-
Request Management
-
Service Catalog
1 ACCEPTED SOLUTION

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-13-2019 08:22 PM
Hi Delia,
You can do the following:
- Clone the out-of-the-box widget 'sc-checkout' and make changes to hide the unwanted fields.
- Apply CSS to hide fields.
Let me know if it helps.
5 REPLIES 5
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-21-2022 03:13 PM
This is the CSS to hide one or both of those fields, create your own Portal CSS file and apply it to your portal. I've had to update these every few versions so I know these work in jakarta+
[for="deliver-to"] {
display: none;
}
[for="special-instructions"] {
display: none;
}