Tutorials › How to hide WooCommerce product image from cart/basket

How to hide WooCommerce product image from cart/basket

Updated 4 years ago

Overview

Steps for removing the WooCommerce product image from displaying in the cart or basket.

Steps

  1. Open functions.php in your child theme folder
  2. Add the following code
add_filter( 'woocommerce_cart_item_thumbnail', '__return_false' );
  1. Save the file