Announcement

Collapse
No announcement yet.

How to change the "Next>" label on Checkout Page 2?

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

    How to change the "Next>" label on Checkout Page 2?

    How to change the "Next>" label to "Send order"> on Checkout Page 2?
    Without affecting the "Next>" label on other checkout pages.

    #2
    This is actually quite tricky because the text on the button is used by OrderScript.pl.

    My kludge would be: In layout Order02 Bulk Area change
    Code:
         <actinic:variable name="CheckoutButtons" value="Checkout Next Button" />
    to
    Code:
         <input type="submit" name="ACTION" value="Send order" onclick="this.value='<actinic:variable encoding="html" name="NextButton" />';return true;" />
    Norman - www.drillpine.biz
    Edinburgh, U K / Bitez, Turkey

    Comment


      #3
      Alternatively, you can edit the orderscript as per the knowledgebase:

      http://community.actinic.com/showthread.php?t=45055
      Last edited by KB2; 22-Mar-2010, 04:42 PM. Reason: Updating kb links

      Comment

      Working...
      X