Announcement

Collapse
No announcement yet.

Help - Problem with v6.1.3 patch

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

    Help - Problem with v6.1.3 patch

    Hi - I have just patched a site I am working on from v6.1.2 to v6.1.3.

    I have a problem in that the quantity field that used to show "0" as the default quantity against products now shows as "1240444"

    I am showing the quantity in the product page and using one checkout button per page.
    Regards
    David

    #2
    That's really strange.

    Would you be able to email a snapshot of your store (File | Export Snapshot) to communityadmin@actinic.co.uk and I'll get someone to take a look at what has happened.

    Comment


      #3
      Right - the problem is with the format for your Quantity box in 'Design | Text'.

      If you click 'Go to' and go to prompt 2173, you have

      %s<INPUT class="formfield" TYPE=text NAME="%s" SIZE="%d" VALUE="%d">

      But the Actinic default has now changed to

      %s<INPUT TYPE=text NAME="%s" SIZE="4" VALUE="%d">

      ...in order to allow people to more easily change the 'SIZE=' value. This unfortunately means that your %d and %s variables are being populated out of sequence.

      The way to fix it is to change

      %s<INPUT class="formfield" TYPE=text NAME="%s" SIZE="%d" VALUE="%d">

      to

      %s<INPUT class="formfield" TYPE=text NAME="%s" SIZE="4" VALUE="%d">

      Comment


        #4
        Hi Chris - thanks for the prompt reply - I'll give that a go.
        Regards
        David

        Comment


          #5
          sorted !!!
          Regards
          David

          Comment


            #6
            In case anyone's interested in getting around skipping an intermediate variable and not losing the sequence for following variables:-

            Just use DUMMY="%s" instead. As browsers will ignore the dummy sub-tag then the parameter sequence is preserved.

            Norman
            Norman - www.drillpine.biz
            Edinburgh, U K / Bitez, Turkey

            Comment

            Working...
            X