Just an FYI, if you want an easy way to go back to where you came form for any reason (when ticking button), i suggest using the most simple method out there...
Quote:
{include file="buttons/button.tpl" button_title=$lng.lbl_go_back style="button" href="javascript:history.go(-1)"}
|
Keep in mind that is an example, but in your case you have a cart button for continue shopping, so you would want to pull the java out and use that on the existing button...
Quote:
href="javascript:history.go(-1)"
|
Note the value -1. this can be changed to as many steps back as you wish, so if you need to go back two or three, simply change value to -2 or -3.