The thread seems to have disappeared asking how to have different text on the next button on page 2 of the checkout.. as I had coded this may as well post in case of use to others:
The above is placed in layout "Checkout Next Button"
Code:
<actinic:block if="%3cactinic%3avariable%20name%3d%22PageType%22%20%2f%3e%20%20%21%3d%20%22Checkout%20Page%202%22"> <input type="submit" name="ACTION" value="<actinic:variable encoding="html" name="NextButton" />" /> </actinic:block> <actinic:block if="%3cactinic%3avariable%20name%3d%22PageType%22%20%2f%3e%20%3d%3d%20%22Checkout%20Page%202%22"> <input type="submit" name="ACTION" value="Place Order" /> </actinic:block>
Comment