Show Product Variations in Cart on Mobile

Hi, we have products where customers select or input various information, they show in the cart on desktop but not on mobile, which just shows the product image and price, we need the customers variation information showing also. please advise asap

Hi @awaterman,

It was hidden on mobile because the space is not enough to show it. Try adding this custom CSS on Theme Options > Global CSS so you can see how it looks when it is shown on smaller screen:

@media (max-width: 767px){
.woocommerce .cart.shop_table .product-name {
   display: block; 
}
}

Hope this helps.

Thank you, works a treat!

You’re most welcome!

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