I've done some changes in the product.tpl. When I'm clicking on the add to cart-button, so the product-images does this beautiful sliding-effect, but then there isn't displayed the price, article-name and the quantity - in the left part of the page.
My form for the adding-to cart look so:
Code: Select all
<form action="<?php echo $action; ?>" method="post" enctype="multipart/form-data" id="product">
<input type="text" name="quantity" size="3" value="1" />
<a onclick="$('#product').submit();" id="add_to_cart" class="button"><span><?php echo $button_add_to_cart; ?></span></a></div>
<input type="hidden" name="product_id" value="<?php echo $product_id; ?>" />
</form>