Okay
  Public Ticket #3336456
Product images in cart not showing
Closed

Comments

  • jorenprins started the conversation

    When adding a product to the cart, the product images are not showing. How do I get the product images to show?

  •  2,958
    Andrew replied

    Hello there,

    Thank you for reaching out to us.

    Try adding this into the Custom CSS box in your Salient Theme Options panel (We write all Custom CSS in the Live Browser to ensure accuracy. If you cannot see any changes, make sure there is no red cross in the Custom CSS Box as any syntax error would cause all CSS under that line of code to not show up on the Frontend):

    .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 !important;
    }
    

    Thanks,

  • jorenprins replied

    Hello Andrew,


    It works sort of. I attached a screenshot. Is it possible to display the image after the product name?


    Thanks in advance!

    Attached files:  Scherm­afbeelding 2023-03-30 om 17.24.47.png

  •  2,958
    Andrew replied

    Hello again,

    Unfortunately, we can not make that kind of adjustment on the cart page as this is customized by woo-commerce and this customization falls out of the scope of our support.

    You can also make the thumbnail larger by adding this CSS.

    .woocommerce table.cart .product-thumbnail a, .woocommerce table.cart .product-thumbnail a img {
        height: 200px;
        width: 200px;
    }
    

    I hope that helps. 

    Kind regards,