In my shopping cart there is a button called 'back to homepage', however when clicked it returns to the product page that called the cart, not the homepage. This maybe down to me messing about with the store, so I don't really want to figure out why, I just want to know how to customise it to go where I want.
The specific code for this button (in Act_ShoppingCart.html) is -
Now, "NETQUOTEVAR:CONTINUEBUTTON" is the text on the button, which I don't care about, so which bit of this code is telling it what to do when pressed???
The specific code for this button (in Act_ShoppingCart.html) is -
Code:
<TD align="center"> <Actinic:REMOVE TAG="ContinueButton"> <INPUT TYPE="SUBMIT" NAME="ACTION" VALUE="NETQUOTEVAR:CONTINUEBUTTON"> </Actinic:REMOVE> <Actinic:REMOVE TAG="ContinueButtonDisabled"> <INPUT TYPE="SUBMIT" NAME="ACTION" VALUE="NETQUOTEVAR:CONTINUEBUTTON" DISABLED> </Actinic:REMOVE> </TD>
Comment