How to Hide " Order Now " . button for a one catalog item . Order now shouldn't visible for on item from Service portal
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-27-2020 02:38 AM
How to Hide " Order Now " . button for a one catalog item . Order now shouldn't visible for on item from Service portal
- Labels:
-
Change Management
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-14-2022 09:31 PM
Hope you are doing good.
Did my reply answer your question?
Would you mind marking the best matching answer as correct and helpful, to close this thread?
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-03-2024 10:09 PM
I tried this it's working to remove the order now button but I want in place of order now button Submit button should be displayed . Is there any way to display Submit button in place of order now button on both Try it page and portal page.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-27-2020 02:54 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-27-2020 03:01 AM
Hi,
By default "Use Cart Layout" checkbox is marked true. Uncheck that box and then select "No Order Now" as true on the maintain item form.
OR
Another way is to write an onLoad Catalog Client script for that particular Catalog item to hide the Order Now button.
function onLoad()
{
document.getElementById("oi_order_now_button").style.display='none';
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-27-2020 03:17 AM