- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-14-2018 10:31 AM
I know we can hide buttons and elements in the cart layout for catalog items in the Service Catalog via the "Maintain Cart Layouts" module. How can you maintain the buttons and elements that are available when inside an order guide??
My requirement is to hide the "Add to Cart" button and pricing and delivery details when in the summary screen of the Order Guide as my customer is using the order guide to submit internal requests that do not carry a cost and do not have an agreed SLA so they feel the mention of price, cart and delivery is confusing to the end users and unnecessary.
Basically they want a Order Guide that simply alloows them to answer questions get directed to the write item, answer some more item specific questions and then hit "order now" or "submit" and for the request to then be on it's way.
Any thoughts?
I looked at Wizards but they seem a bit unloved in the latest releases as the doc's don't match the available options in the current releases.
Solved! Go to Solution.
- Labels:
-
Service Catalog
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-15-2018 05:52 AM
The Add to cart can be removed with instance options:
But since I read you other requirements I would actually clone the order guide widget and make the changes in there instead. Since it's just about hiding/renaming stuff I would say it shouldn't take that long.
/Göran

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-14-2018 10:47 AM
You could create an on-load client script on the order guide with code like below. This is actually removing the Order Now. You have to use the inspect on the browser to get the Element ID.
document.getElementById('order_now').style.display='none';}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-14-2018 10:52 AM
If you are using service portal you may want to check this out.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-15-2018 04:15 AM
Hi Brian,
I'm trying to steer clear of DOM manipulation if possible so the document.getElementById call will be a last resort.
As for the "No Cart" options and also the process for setting up cart layout for specific items, they don't seem to effect the Order Guide buttons/cart. These seem to be their own beast.
I guess I'm hoping someone knows of some parameter that I can alter to hide these buttons in the order guide screens (see below screen shots) otherwise it's going to have to be DOM manipulation.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-15-2018 05:52 AM