Tutorials › How to remove product link from WooCommerce cart/basket
How to remove product link from WooCommerce cart/basket
Overview
Steps for removing the product link from the product name in WooCommerce carts or baskets.
Steps
- Open
functions.php
in your child theme folder - Add the following code
add_filter( 'woocommerce_cart_item_permalink', '__return_false' );
- Save the file