I would like to change the continue shopping link to take the shopper back to the last item they viewed, rather than the store entrance set in CommerceBuddy.

If you would like to take your shoppers back to the last page they were on instead of the store entrance URL (the store entrance set from within CommerceBuddy by default), you may edit the header.html file of CartIt and add a javascript history link. The header.html file can be found in the "data" folder (or whatever you named the "data" folder when you installed CartIt) on the server.

 

For CartIt Unix 4.0, 5.0, and 8.0 -

Replace the following:

<A HREF="%io_home_page%">Continue Shopping</A>

with this:


<a href="javascript:history.go(-1)"
onMouseOver="self.status='Click this link to Return to Previous Page.';
return true" onMouseOut="self.status=''; return true">Continue Shopping</a>