Home Forums Basel support forum Change Design on Woocommerce Cart Page

Change Design on Woocommerce Cart Page

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #16145

    Wedding-Shoots
    Participant

    Please change the Design from the new Cart page to the old version.

    #16147

    Artem Temos
    Keymaster

    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

    #16169

    Wedding-Shoots
    Participant

    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.

    #16170

    Artem Temos
    Keymaster

    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;
    }
    #16171

    Wedding-Shoots
    Participant

    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.

    #16172

    Artem Temos
    Keymaster

    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

Viewing 6 posts - 1 through 6 (of 6 total)