Tutorials › How to remove product link from WooCommerce cart/basket

How to remove product link from WooCommerce cart/basket

Updated 4 years ago

Overview

Steps for removing the product link from the product name in WooCommerce carts or baskets.

Steps

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