Announcement

Collapse
No announcement yet.

Restricting special instructions field

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

    Restricting special instructions field

    Is there a way of restricting the number of characters available to the customer in the special instructions field?

    Thanks
    Jonathan

    #2
    Open up the Actinic template (Act_Order1.html), and find the special instructions HTML code. It should look something like

    Code:
    <input type="TEXT" name="SHIPUSERDEFINED" size="20">
    Add in the 'maxlength' attribute so your code looks like this:

    Code:
    <input type="TEXT" name="SHIPUSERDEFINED" size="20" maxlength="30">
    In the above example, field input would be limited to a maximum of 30 characters.
    www.gbradley.co.uk
    Web Development, Actinic Patches, Scripts & more

    Comment


      #3
      superstar, thanks
      Jonathan

      Comment

      Working...
      X