I need to remove "continue shopping'' on only one order guide particularly
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-01-2022 11:15 PM
Hi,
I need to remove 'continue shopping' on only one particular order guide not on all order guide.
Through maintain cart layout, it is removing continue shopping from all order guide.
Also tried using ui script suggested from other community questions.
nothing worked.
Is there any other way to disable 'continue shopping' on only one particular order guide.
Need it as immediate requirement. Please help
Thanks,
Sri
- Labels:
-
Service Catalog

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-01-2022 11:24 PM
Hello,
You can go to "Maintain cart layouts" under service catalog and uncheck "contine shopping" option in order status,this wil be applied for all.If you want it for a specific order guide the nyou can use the below script:
You can diable contiue shopping by using below UI Script.
and Make Global is true.
(function() {
addAfterPageLoadedEvent(function () {
if (location.href.indexOf('com.glideapp.servicecatalog_category_view.do') != -1 ||
location.href.indexOf('catalog_home.do') != -1) {
setTimeout(function(){hideButton();}, 1000);
} else if (location.href.indexOf('com.glideapp.servicecatalog_cat_item_view.do') != -1) {
setInterval(function(){hideButton();}, 1000);
}
});
})();
function hideButton() {
try {
gel('catalog_cart_continue_shopping').hide();
} catch (e) {}
}
if my answer is worthy then mark as helpful or marks as Correct
Regards,
Vaishnavi
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-01-2022 11:42 PM
Hi,
Tried this, it is not working.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-01-2022 11:58 PM
Navigate to "Maintain Cart Layouts" module under Service Catalog. Go to "Cart Preview Screen" record and edit it.
(Uncheck the "Continue Shopping" button under buttons section).
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-02-2022 12:24 AM
still Not working