Announcement

Collapse
No announcement yet.

Problem with choices 8.5.2

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

    Problem with choices 8.5.2

    Hi,
    I have just uploaded a new version of our site. When you choose a choice in one of the products it automatically puts the top choice into the shopping cart. Even if we select the middle choice.

    Any Ideas would be greatly appreciated
    wdbathrooms co uk

    Thankyou

    #2
    attribute/choice prolems

    Hi, As per above link I thought Id add a link to an example of the problem. If you add any choice to cart you can see it adds the top choice no matter which choice you add to cart.

    http://www.wdbathrooms.co.uk/acatalo...ower_Tray.html


    I am stuck for ideas. If anyone can help on this i would be forever grateful
    thankyou

    Comment


      #3
      There's custom code on your site. I see e.g.
      Code:
      <script type="text/javascript">
      //Set current item as p0
      var temp = new String('JT40  Extra Slim 40mm Shower Tray ');
      temp = temp.replace(/[^a-zA-Z 0-9]+/g,'');
      var p0 = "<li><a href='" + document.URL + "'>" + temp + "</a></li>";
      var p1=getCookie("p1");
      var p2=getCookie("p2");
      var p3=getCookie("p3");
      var p4=getCookie("p4");
      if(p0 !=null && p0 != p1 && p0 != p2 && p0 != p3 && p0 !=p4)
      {
      setCookie("p1",p0)
      setCookie("p2",p1)
      setCookie("p3",p2)
      setCookie("p4",p3)
      }
      </script>
      The code above probably isn't the culprit but best check with whoever customised the site in case it's their changes that are causing this.
      Norman - www.drillpine.biz
      Edinburgh, U K / Bitez, Turkey

      Comment

      Working...
      X