Tutorials › How to hide WooCommerce product image from cart/basket
How to hide WooCommerce product image from cart/basket
Overview
Steps for removing the WooCommerce product image from displaying in the cart or basket.
Steps
- Open
functions.php
in your child theme folder - Add the following code
add_filter( 'woocommerce_cart_item_thumbnail', '__return_false' );
- Save the file