How do I change where the continue shopping button is redirecting my customers to?
Asked
Active
Viewed 5,941 times
1 Answers
2
It is set dynamically in Mage_Checkout_Block_Cart::getContinueShoppingUrl() depending of some conditions.
The easiest way to customise it is to set it explicitly in the checkout/cart.phtml template of your theme.
The more sophisticated way would be to add something like this into your module controller:
Mage::getSingleton('checkout/session')->setContinueShoppingUrl(...);
Tim Bezhashvyly
- 11,575
- 6
- 43
- 73
checkout/cart.phtmlfile of your theme and change the link there. – Tim Bezhashvyly Sep 19 '13 at 06:25'Mage::getSingleton('checkout/session')->setContinueShoppingUrl(...);'
– Christina Rule Sep 19 '13 at 19:07