Hide 'Delivery Time' on Self Service Portal
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-26-2019 04:24 AM
I am trying to hide the 'Delivery Time' which is currently displayed on our self service portal as part of the cart. I have already set the following value to false and while this has hidden the 'Delivery Time' when viewed using the back end portal it is still visible on the self service portal.
Service Catalog > Maintain Cart Layouts > Item Ordering Widget > Delivery time
Does anyone know how to disable this for the self service portal cart as well. I know i can do it per item but i need to turn it off globally for the time being.
- Labels:
-
Service Portal Development
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-28-2019 12:52 AM
Hi Abhishek,
Unfortunately i already tried this, the option is unticked but the delivery time is still being displayed.
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-28-2019 01:11 AM
Check out this:
Please mark as Correct Answer/Helpful, if applicable.
Thanks!
Abhishek Gardade
Abhishek Gardade
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-04-2020 01:02 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-13-2023 08:30 AM
You can write an onload catalog client script to hide the delivery time from Platform view. you can write it for one catalog item or create it in a variable set so that it will be applicable to all the items which contain that variable set.
1. Open a new Catalog Client script form
2. Set "Isolated Script" check box to false (you might need to do it after saving the script)
3. Set type to "onLoad"
4. Add below lines in your onload function
- document.getElementById("sc_delivery_time_label_cell").style.display='none';
- document.getElementById("sc_delivery_time_cell").style.display='none';
5. Save the client script form.