Site icon Experience Wordpress Developer Online – Design Develop and Maintenance Support

How to Remove the Product Permalink at WooCommerce Order Table

Users looking at the order table can actually link on the Products they just purchased.So if you want to remove the Product Permalink at WooCommerce Order Table than here is my code just copy that code and and Add this code in your theme’s functions.php file of your active child theme (or theme).

add_filter( 'woocommerce_order_item_name', 'remove_permalink_order_table', 10, 3 );
 
function remove_permalink_order_table( $name, $item, $order ) {
   $name = $item['name'];
   return $name;
}
Exit mobile version