Change Design on Woocommerce Cart Page
-
Please change the Design from the new Cart page to the old version.
Hello,
Thank you for purchasing our theme and contacting us.
The cart design was changed in the new WooCommerce update. And we had to do changes in our theme. To return an old design, you just need to remove CSS class “shop_table_responsive” from the table with products in the file basel/woocommerce/cart/cart.php
Regards
Thanky you for the fast response. We deleted the class and had ->nearly<- the old styled cart. How we can remove the productpics at the left and romve the scolling from left to right? You can see it in the picture we send you.
Thanks in advance.
Try to add the following code snippet to the Custom CSS area in Theme Settings to fix this issue.
.woocommerce .shop_table .product-thumbnail {
display:none!important;
}
Thank you. You guys are really fast 🙂
1) Is it possible to delete the product thumbnails in cart only on mobile devices?
2) We would like to have the left / right buttons from the count ou products on mobile devices disabled
3) how to shrink the font of heading type (Produkt Preis Anzahl Summe) ?
Thank yo in advance.
1. Yes, you can add it to Custom CSS for mobile devices only in Theme Settings.
2. Add this also
.shop_table td.product-quantity .quantity .minus,
.shop_table td.product-quantity .quantity .plus {
display:none!important;
}
3. If you want, you can decrease its font size
table tr th {
font-size: 12px;
}
Regards