Tutorials › How to remove product link from WooCommerce order received page

How to remove product link from WooCommerce order received page

Updated 4 years ago

Overview

Steps for removing the product link from the WooCommerce order details page.

Steps

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