Recently, I encountered a problem with my online shop that seems to be related to the Javascript. The issue arises when I add an item to my shopping cart from this particular page: . Initially, when I click 'Add to Cart,' the item is correctly added as one in the shopping cart on the right sidebar. However, upon clicking 'View Cart' and proceeding to the checkout page, the item suddenly duplicates to two.
Upon investigating using Firebug, I noticed a blank background-image declaration in the CSS causing the double submission:
/* Background */
#show-space,
#inner-page-show-space {
background-color: #ff9f12;
background-image: url();
}
I am seeking advice or suggestions on how to resolve this issue efficiently. Any insight would be greatly appreciated!