- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-03-2014 01:22 PM
Hi All,
I need some help on this scenario:
When ordering a catalog item, there is a "Order this item" summary, normally located at the upper-mid right side of the screen. (Please see screenshot.)
Basically, we do not need the 'Delivery time 7 Days' ...how do I hide/remove it?
Thanks in advance.
Dor
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-04-2014 07:53 AM
I forgot to add a very important caveat: If you use this method, you will "OWN" the macro, meaning that when you upgrade, this macro will not be updated.
Another alternative would be to set a workflow "set value" to push a zero time. A zero time will not display and therefore the Delivery Time information will not display.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-04-2016 01:26 PM
A small clarification on John's response. . . The "set value to push a zero time" means on the workflow's "Schedule" property section, you need to set the days/hours/minutes/seconds to zero. It took me a bit to understand where to find the right time value.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-23-2015 07:11 AM
Hi John,
My name is Karen and I am having the same issue with the Delivery time. I am trying to follow your instructions of commenting out the .xml code but I am not familiar with .xml. Can you tell me exactly which line(s) need to be commented out and can you show me exactly how to comment it out. I know that you use the < !-- for the commenting, but am I commenting just one line of code or start it at one line and close it at another. I guess what I am asking is does every line that have DeliveryTime need to be commented out. See your instructions below (line 3, 5, 7, and 9):
- Navigate to UI Macros
- Locate the sc_cart_main UI macro
- Review the XML. Towards the bottom of the script is the delivery_time variable definition
- Delete or use REM marks (<!-- blahblah -->) to exclude this bit:
- <j:set var="jvar_wf" value="${sc_cat_item.workflow}"/>
- <j:if test="${!empty(jvar_wf)}">
- <g:evaluate var="jvar_wf_delivery_time" jelly="true" expression="new Workflow().getEstimatedDeliveryTime(jelly.jvar_wf);" />
- <tr>
- <j:if test="${jvar_wf_delivery_time != ''}">
- <td>
- <strong>${gs.getMessage('catalog_delivery_time')}</strong>
- </td>
- <td>${jvar_wf_delivery_time}</td>
- </j:if>
- </tr>
- </j:if>
- <j:if test="${empty(jvar_wf)}">
- <j:if test="${sc_cat_item.delivery_plan.total_delivery_time.getDisplayValue().length > 0}">
- <tr>
- <td>
- <strong>${gs.getMessage('catalog_delivery_time')}</strong>
- </td>
- <td>
- ${sc_cat_item.delivery_plan.total_delivery_time.getDisplayValue()}
- </td>
- </tr>
- </j:if>
- </j:if>
Save your changes and your delivery time should now be

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-21-2015 10:26 AM
In Fuji you can hide Delivery Time using:
Service Catalog->Catalog Definitions->Maintain Cart Layouts
Once there, navigate to Target type: Browser Widget
Then choose Item Ordering Widget.
Uncheck the Delivery time checkbox.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-24-2015 07:13 AM
Thanks Daniel for replying. We are using the Eureka version and I figured out what I needed to do in that version to remove it.
Have an Awesome Weekend.
Karen
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-04-2017 10:13 PM
Thanks a lot Daniel for your valuable information
Have a Nice Weekend Cheers..
Karthikeyan Durairaj