How to hide Delivery Time & Quanity field on SC Catalog Item widgetSummaryWith the SC Catalog Item widget, the Delivery Time & Quantity fields are visible on the catalog item page.ReleaseOrlando, ParisInstructionsPlease check the video attached. Related LinksTo perform this update on multiple catalog items at the same time, you can run the below background script. var gr = new GlideRecord("sc_cat_item"); gr.addEncodedQuery("type!=bundle^sys_class_name!=sc_cat_item_guide^type!=package^sys_class_name!=sc_cat_item_content^no_quantity_v2=false^no_delivery_time_v2=false"); gr.query(); gr.no_quantity_v2 = 'true';gr.no_delivery_time_v2 = 'true'; gr.updateMultiple();