- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-17-2020
05:37 AM
09-17-2020
05:37 AM
How to redirect cart page programaticlly
Hi
Can anyone tell me how to redirect on cart page using with controller
Labels:
1 REPLY 1
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-17-2020
07:49 AM
09-17-2020
07:49 AM
Re: How to redirect cart page programaticlly
@krishenuetb254 you can use the below code to redirect to cart page.
$url = $BaseURL . 'checkout/cart'; $this->_response->setRedirect($url)->sendResponse();
Hope it helps!
Thanks