Join the Soledad Facebook Users Group here
for Share, assistance, discussion, and Updates related to Soledad WordPress Theme.

If you can't create a new ticket - you can send us an email via our contact form and we will get back to you.

Okay
  Public Ticket #4521895
Product images in cart
Open

Comments

  • almondsurf started the conversation

    My product images aren't showing up in the "phone" mobile cart. The product images show up in "tablet" and "desktop," but the cart shows only a small "x" where the image should be in the phone "mobile" view.

    Can you help me to get the product images to show up on my phone view?

    Attached files:  Mobile Cart_No Images.png

  •  3,037
    PenciDesign replied

    Hi,

    WooCommerce automatically hides the product thumbnails in the cart on small screen devices. If you would like to display them, please go to Appearance → Customize → Custom CSS and add the following code:

    @media only screen and (max-width:767px) {
      .woocommerce #content table.cart .product-thumbnail,
      .woocommerce table.cart .product-thumbnail,
      .woocommerce-page #content table.cart .product-thumbnail,
      .woocommerce-page table.cart .product-thumbnail {
        display: block;
      }
      .woocommerce table.shop_table_responsive tr td::before,
      .woocommerce-page table.shop_table_responsive tr td::before {
        display: none;
      }
      .woocommerce-cart table.cart .product-thumbnail img {
        width: 100%;
        height: auto;
      }
    }
    

    Regards,
    PenciDesign.