Hi, in my new - under development - shop, I have a shopping cart and an item can be added to the cart by clicking a button "Add to cart". The item should be added to the cart without reloading the page. But when I click the button, nothing happens. My shop: http://www.webtrafficbox.com/test/ Does anybody see whats the problem here? Thanks highfish
Firebug tells me that in style.css, line 108, you have a rule that says #topbar .fast-info .access-info-box { display: none; this is preventing your shopping cart html from showing. the loading goes OK, it's just that style rule that prevents it showing. to fix it, you could insert the following into what /home/full-shop-creation/full-wp-shop-setup-including-theme-license-domain-three-months-hosting/index.php?ajax=true returns: jQuery('div.shopping-cart-wrapper').css({display:'block'}).html (.....) (full reply that i think will work listed here jQuery('div.shopping-cart-wrapper').css({display:'block'}).html(' \n<div class=\"cartcount\">3 items</div>\n<div id=\"small-cart\" class=\"access-info-box shopping-cart-wrapper widget_wp_shopping_cart\">\n <div id=\"small-cart-header\">\n <div class=\"cart-message\">\n \n <p>You just added \"Full WP Shop Setup - including theme license, domain, three months hosting\" to your cart.</p>\n \n \n \n </div>\n </div>\n <div class=\"shippingcart\">\n <table>\n <thead>\n <tr>\n <th scope=\"col\" id=\'product\'>Product</th>\n <th scope=\"col\" id=\'quantity\' class=\"text-right\">Quantity</th>\n <th scope=\"col\" id=\'price\' class=\"text-right\">Price</th>\n </tr>\n </thead>\n \n <tfoot>\n <tr class=\"topmargin\">\n <td colspan=\"2\" class=\"label\">Total:</td>\n <td class=\"text-right bold\"><span class=\'pricedisplay\'>1,500.00$</span></td>\n </tr> \n \n \n \n </tfoot>\n \n <tbody>\n <tr>\n <td>Full WP Shop Setup - including theme license, domain, three months hosting</td>\n <td class=\"text-right\">3</td>\n <td class=\"text-right\"><span class=\'pricedisplay\'>1,500.00$</span></td>\n </tr> \n </tbody>\n </table>\n </div>\n \n <div class=\"small-cart-links\">\n <a class=\"checkout-link\" href=\'http://www.webtrafficbox.com/home/checkout/\'>Checkout</a>\n <form action=\'\' method=\'post\' class=\'wpsc_empty_the_cart\'>\n <input type=\'hidden\' name=\'wpsc_ajax_action\' value=\'empty_cart\' />\n <a class=\'emptycart\' href=\'/home/full-shop-creation/full-wp-shop-setup-including-theme-license-domain-three-months-hosting/index.php?wpsc_ajax_action=empty_cart\'>Empty Your Cart</a>\n </form>\n \n <div class=\"clear \"></div> </div>\n \n \n\n</div>'); jQuery('.cart_message').delay(3000).slideUp(500);