Cart Items no Visible on Mobile

When i look at a cart on a mobile device, it doesn’t show the item photo, nor does it list the item itself.
It just shows the total and that’s it.

*please note: the only way to get to the cart is to go back to it from checkout
It’s currently set to bypass the cart, but people have been hitting back to cart.

Jesse

Hi Jesse,

I can confirm the issue. Woocommerce hides the thumbnail by default and the theme hides the product name by defaullt. See this: https://screencast-o-matic.com/watch/cq6bjouzeO

If you want to override it, please add the following CSS on Theme Options > Global CSS

@media (max-width: 767px){
.woocommerce .cart.shop_table .product-name {
    display: block; /*overrides the theme CSS that hides product name*/
}
 .woocommerce table.cart .product-thumbnail, .woocommerce-page table.cart .product-thumbnail {
    display: block; /*overrides the woocommerce CSS that hides product thumbnail*/
}
}

Hope this helps.

Perfect, thank you!

You’re welcome!
We’re glad @Lely were able to help you out.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.