Announcement

Collapse
No announcement yet.

Add To Cart Display Error

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

    Add To Cart Display Error

    When I add to cart the cart quantity value puts an extra space in the display when an item is added.

    i.e. Basket (0) becomes Basket (1 )

    For the life of me I can't see where this space is coming from. I've tried closing the spaces up in the script, but it makes no difference.

    Has anyone comes across this minor bug before?

    view issue here http://www.amplifydconcepts.com/

    #2
    My quick work around would be to change the ( to : and then remove the ). You won't see the space then.

    Comment


      #3
      The client got heart set on brackets :-( cheers for idea though

      Comment


        #4
        The problem is in ActinicOrder.pl. Not worth fixing it there as you'd have to maintain it when Actinic changes versions.

        Simple fix is to replace
        Code:
        getCartItem(3)
        with
        Code:
        getCartItem(3).toString().replace(/\s+/g,'')
        Norman - www.drillpine.biz
        Edinburgh, U K / Bitez, Turkey

        Comment


          #5
          Thanks Norman

          Comment

          Working...
          X