Announcement

Collapse
No announcement yet.

Items in Basket > (Action Showcart) on Brochure Page

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

    Items in Basket > (Action Showcart) on Brochure Page

    Hi

    i've the 'action showcart' to display the items in the shoppers basket at the top of every page - it works on catalogue pages but not on my brochure page.

    visit site

    I tried the advanced guide tip (p49) which suggests using http://your.URL/cgi-bin/ca000001.pl?....URL/acatalog/ but this resulted in a javascript error.

    Have i done something stoopid? or has anyone had a similar problem and solved it?

    pete

    #2
    Hi there,

    Looking at the source of your page it seem that the code you inserted for the 'cart item and value' is not the generated code.

    Please try replacing the code from;

    <script language="JavaScript">
    document.write("NETQUOTEVAR:CARTCOOKIEITEMS&nbsp;" + getCartItem(3)+"<br>");
    document.write("NETQUOTEVAR:CARTCOOKIEVALUE&nbsp;" + getCartItem(1));
    </script>

    TO

    <script language="JavaScript">
    document.write("Items&#58;&nbsp;" + getCartItem(3)+"<br>");
    document.write("Value&#58;&nbsp;" + getCartItem(1));
    </script>

    Hope this helps
    Thank You
    Menar Khan

    Comment


      #3
      thanks menar

      thats fixed it.

      i think i got the old code from a previous site i developed some time ago. that'll teach me to be sloppy.

      Comment

      Working...
      X