2

How do I change where the continue shopping button is redirecting my customers to?

Christina Rule
  • 946
  • 3
  • 15
  • 29

1 Answers1

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