I have a problem with the shopping cart in one of my shops.
When I add a product to my cart it's visible and all. Everything working fine. But when I add the Product with ID 33 to the cart it is just not showing. The price gets higher and gets displayed but not the product. Every product else gets displayed.
I tried to clean the cache, reindex and nothing worked.
The Error... was me!
I had this in the styles.css:
.data-table tr.first{
display:none;
}
That means it was not displayed cause of the CSS... the code was for the product-view so I just added .product-view:
.product-view .data-table tr.first{
display:none;
}
Problem solved. Thanks to all who tried to help me. Sorry for wasting your time
_ Marco