Announcement

Collapse
No announcement yet.

Attribute Missing From Invoice

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

    Attribute Missing From Invoice

    We've recently upgraded to v8.5.3 from v7.0.4. When an order from for say a pair of shoes comes in, The discription is there, but not the size they have ordered isn't. I have tested the site and have placed an order using the size attribute on the product, but it never shows the size selction on the checkout pages let alone the order itself in Actinic.

    Is this solvable
    Cheers FrAz

    #2
    You are somehow generating corrupt code for your size drop-downs. I see:
    Code:
    <select name="v_3456_1" class="form_input_general">
    <option value="<span style='font-size: 12px;'>1</span>">04 (In Stock)</option>
    <option value="<span style='font-size: 12px;'>2</span>">05 (In Stock)</option>
    <option value="<span style='font-size: 12px;'>3</span>">06 (In Stock)</option>
    <option value="<span style='font-size: 12px;'>4</span>">07 (Del: 7-14 Days)</option>
    <option value="<span style='font-size: 12px;'>5</span>">08 (Del: 7-14 Days)</option>
    </select>
    And it's that

    value="<span style='font-size: 12px;'>1</span>"

    that's wrong

    it should be just

    value="1"
    Norman - www.drillpine.biz
    Edinburgh, U K / Bitez, Turkey

    Comment


      #3
      Is this a variable that is causing this?
      Cheers FrAz

      Comment


        #4
        It's something you did, I think. Probably messed around with ChoiceSelectedValue. In the drop-down layout.
        Norman - www.drillpine.biz
        Edinburgh, U K / Bitez, Turkey

        Comment


          #5
          did you change the font size in the variable from within the design layout?

          <option value="<Actinic:Variable Name="ChoiceSelectedValue"/>"><Actinic:Variable Name="ChoiceDisplayLabel"/></option>

          if you double clicked here and changed the font sizes there is your problem
          it adds the Span bit to the code
          Remembering the road to Actinic enlightenment is a long and sometimes painful one.
          Current project:
          cheapadulttoys4u.co.uk
          cheaplingerie4u.co.uk
          Something for the Missus,Something for the Weekend

          Comment


            #6
            Nice one, finally managed to track the little blitter down and change the value, thanks for the heads up
            Cheers FrAz

            Comment

            Working...
            X