Home » WooCommerce: Remove Link to Product @ Order Table

WooCommerce: Remove Link to Product @ Order Table

by Tutor Aspire

There is a slightly annoying thing on the WooCommerce Thank-You Page and WooCommerce emails. Users looking at the order table can actually click on the Products they just purchased and abandon the page before taking the action you want them to take (see image below).

So, I coded a simple PHP snippet to remove such links. As usual, 1 line of code is more than sufficient:)

The annoying hyperlink to the product on the WooCommerce order table
The annoying hyperlink to the product on the WooCommerce order table

PHP Snippet: How to Remove the Product Permalink @ WooCommerce Order Table

/**
 * @snippet       WooCommerce Remove Product Permalink @ Order Table
 * @how-to        Get tutoraspire.com FREE
 * @author        Tutor Aspire
 * @testedwith    WooCommerce 4.3
 * @donate $9     https://www.tutoraspire.com
 */

add_filter( 'woocommerce_order_item_permalink', '__return_false' );

You may also like