Buy me a coffee

Remove Product image on Cart Page

Suppose we need to remove these images on Cart Page.

Remove Product Image On Cart Page 1 Min

#1. Remove All Product Images
You can use this code to Custom CSS box.

div.cart-row-img-wrapper {
    display: none;
}

Remove Product Image On Cart Page 2 Min

Result

Remove Product Image On Cart Page 3 Min

#2. Remove specific product image
You can use CSS code like this

div.cart-row:has(a[href="/shop/p/one-hundred"]) div.cart-row-img-wrapper {
    display: none;
}

Remove Product Image On Cart Page 4 Min

Result

Remove Product Image On Cart Page 5 Min

Note: this is Product URL

Remove Product Image On Cart Page 6 Min