Announcement

Collapse
No announcement yet.

Components carry size into basket

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

    Components carry size into basket

    I've got a set of products each with a dropdown menu which contains S/M/L sizes. The page is set up with only one add to basket button, but when I come to select a size and add to basket, the size is not carried across and displayed in the checkout page.

    Anyone got any ideas!?

    #2
    As always, an URL of a problem page would be helpful.
    Norman - www.drillpine.biz
    Edinburgh, U K / Bitez, Turkey

    Comment


      #3
      Sorry! Here's a URL http://www.sofabeds4u.com/acatalog/Socks.html

      Comment


        #4
        There's no </FORM> tag that should be closing the <FORM..> for your products.

        You have a lot of HTML (including a repeated CSS load) between your OPTION statements - only plain text is allowed. E.g.

        <SELECT NAME="v_101_1"><link href="MainCSS.css" rel="stylesheet" type="text/css" /><OPTION VALUE=1 SELECTED><span class="Arial_10_font">S</span> <link href="MainCSS.css" rel="stylesheet" type="text/css" /><OPTION VALUE=2 ><span class="Arial_10_font">M</span> <link href="MainCSS.css" rel="stylesheet" type="text/css" /><OPTION VALUE=3 ><span class="Arial_10_font">L</span> </SELECT>

        should be simply

        <SELECT NAME="v_101_1"><OPTION VALUE=1 SELECTED>S<OPTION VALUE=2 >M<OPTION VALUE=3 >L</SELECT>

        If you want to apply formatting to the text within a SELECT, it should be done by adding a class to the <SELECT...> tag.
        Norman - www.drillpine.biz
        Edinburgh, U K / Bitez, Turkey

        Comment

        Working...
        X