Announcement

Collapse
No announcement yet.

Make Continue Shopping Work as a back button in V10

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Make Continue Shopping Work as a back button in V10

    I am posting to the cart in V10 and need the continue shopping button to act as an html button so it sends you back to the page on the external site with the cart link.

    I found this code but don't know what to do with it.

    "<FORM><INPUT TYPE="button" VALUE="Back" onClick="history.go(-1);return true;"></FORM> "

    Help appreciated

    the page I am linkin from is http://www.proadventure.co.uk/newsit...ing-taster.htm the link is under booking.

    #2
    Try:

    Code:
    <a href="javascript:window.history.back();">Go Back</a>
    see if that works.

    Comment


      #3
      Thanks Lee

      Where do I put it?

      In design mode I guess?

      does it replace this

      <input type="image" name="ACTION_CONTINUE" src="button_continue_button.gif" alt="<Actinic:Variable Name="ContinueButton"/>" />

      Comment


        #4
        On the design tab is best yes, select the layout from the drop down list, don't replace the existing code yet, just add it alongside to try first.

        Comment


          #5
          Do I put in inside the input statement?

          Comment


            #6
            No, not within the existing code for the current button, just alongside it completely independent to try it.

            Comment

            Working...
            X