- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-12-2019 06:21 AM
In service portal, when I click on "add to cart" button, it gives me two option. one is "Catalog Home" and another is "View Cart". I want to take off "Catalog Home" button and put another button in there called "Continue shopping" which will redirect user to the sc_cat_item_guide. Can someone please help me with that?
Clear instruction with steps please. I am not familiar with service now.
Thank you!
Solved! Go to Solution.
- Labels:
-
Service Portal Development
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-15-2019 10:15 AM
Oleg,
I have done this and still it's not mapping to the sc_cat_item_guide. Can you please help me with it?
spModal.open({
message: i18n.getMessage('Items have been added successfully'),
size: 'sm',
backdrop: 'static',
keyboard: false,
noDismiss: true,
buttons: [
{label: i18n.getMessage('Continue Shopping'), cancel:true},
{label: i18n.getMessage('View Cart'), primary:true}
]
}).then(function() {
$location.search("id=sc_cart");
}, function() {
$location.search("id=sc_cat_item_guide");
})
});
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-15-2019 10:58 AM
You are welcome!