Announcement

Collapse
No announcement yet.

Continue Shopping Vs Back Button?

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

    Continue Shopping Vs Back Button?

    Hi,
    Help please!

    On adding an item & quantity to the Shopping Cart we are then taken to the confirmation page where we have a zero bounce setting. Clicking the 'Continue Shopping' button takes us back to the top of the previous page and we then have to scroll down the page to find where we left off. If we click the Browsers' 'Back' button instead of the 'Continue Shopping' button, it takes us back to the exact place on the previous page from where we left off.
    Is it possible to configure Actinic Catalog to return us to the same place on the previous page after clicking on 'Continue Shopping' rather than taking us back to the top of the previous page?

    Many thanks.
    Glenn

    #2
    Hi there

    You could try the following: Simply go to "Advance | Template Manager | Ordering" and click on the button for "Order Details"

    This will bring up "Act_Orderdetails.html"

    Here find a line called

    Code:
    <INPUT TYPE=IMAGE VALUE="NETQUOTEVAR:CANCELLABEL" NAME=ACTION_CANCEL SRC="cancel.gif" ALT="NETQUOTEVAR:CANCELLABEL" TITLE="NETQUOTEVAR:CANCELLABEL">
    Comment this out and instead put an cancel image with a href link of "javascript:history.go(-1)"

    Kind Regards
    Nadeem Rasool
    SellerDeck Development

    Comment


      #3
      continue button

      can you provide some more detial on how to do this as it is something i am also looking to do

      Comment


        #4
        Originally posted by Nadeem
        Hi there

        You could try the following: Simply go to "Advance | Template Manager | Ordering" and click on the button for "Order Details"

        This will bring up "Act_Orderdetails.html"

        Here find a line called

        Code:
        <INPUT TYPE=IMAGE VALUE="NETQUOTEVAR:CANCELLABEL" NAME=ACTION_CANCEL SRC="cancel.gif" ALT="NETQUOTEVAR:CANCELLABEL" TITLE="NETQUOTEVAR:CANCELLABEL">
        Comment this out and instead put an cancel image with a href link of "javascript:history.go(-1)"

        Kind Regards
        Nadeem,
        Thanks, I'm also keen to do this - the last sentence of your advice doesn't make sense to me. Perhaps I'm being stupid but would appreciate you post exactly what replacement code is.
        MarcusT

        Comment


          #5
          Hi there

          You would need to comment out that line using html so the code would be

          Code:
          <!-- <INPUT TYPE=IMAGE VALUE="NETQUOTEVAR:CANCELLABEL" NAME=ACTION_CANCEL SRC="cancel.gif" ALT="NETQUOTEVAR:CANCELLABEL" TITLE="NETQUOTEVAR:CANCELLABEL"> -->
          Then after that put the following code in:
          Code:
          <a href="javascript:history.go(-1)"><img src="cancel.jpg" border="0"></a>
          Cancel.jpg is your cancel image

          Kind Regards
          Nadeem Rasool
          SellerDeck Development

          Comment

          Working...
          X