Product image not showing in the check out on mobile view

Hello,

I noticed that products image is not showing on mobile view in the final steps of the check out. I can see the name and title of the product but the image is not showing. 

Kindly find below 


Website

Comments

  • Hi,
    It's normal behavior of WooCommerce plugin.
    The resolution is too small to make it look good, so software is disabling the image.
    I enabled the image, and it looks like this:
    https://i.imgur.com/Py7Wy9P.png

    Every item which will be bought will have two rows to display, one with the title, second with the image.
    If you still want to have this image, please paste this code into Theme Options > Custom CSS & JS > CSS
    @media (max-width:767px){
    body.woocommerce-cart .product-thumbnail{
    display:block !important;
    }
    }
    Thanks
  • Thanks it works fine.

Sign In or Register to comment.