Tagged: Cart, mobile, woocommerce
Hello, there is a problem with the mobile view of your cart (woocommerce).
You hide the columns “quantity” and “total” but in germany you are not allowed to. You have to show all data to the users.
You can take a look at your own demo.
Desktop View:
https://i.imgur.com/zfsTGC8.png
Mobile View:
https://i.imgur.com/L8Hhk2j.png
Can u pls fix it, its rly important for german shop owners.
In german, cause its better then my english.
Hiho, ihr habt da ein Problem bei der mobilen Darstellung des Einkaufswagens für WooCommerce.
Desktop ist alles bestens, mobile (Handy) werden jedoch die Spalten Anzahl und Produkt Gesamt ausgeblendet, das ist für Käufer nicht nur sehr irritierend sondern in Deutschland auch rechtlich problematisch. Führt zu fiesen Abmahnungen usw.
Könnt ihr das bitte möglichst umgehend fixen?
Screenshots siehe oben, Fehler ist auch in eurer Demo ganz einfach zu erkennen.
Gruß / Regards
Dennis
Hey dfarin,
Thank you for using Enfold.
Please add the following css codes to display the missing columns on mobile view.
@media only screen and (max-width: 767px) {
.responsive .shop_table .product-quantity, .responsive table.shop_table .product-subtotal {
display: table-cell;
}
table div.quantity {
width: 60px;
}
#top div .quantity input.plus, #top div .quantity input.minus, #top div .quantity input.qty {
line-height: 20px;
height: 20px;
height: 20px;
}
}
You may need to adjust the size of the columns.
Best regards,
Ismael
THX Ismael!