Last active
December 2, 2021 10:10
-
-
Save damiencarbery/9bb3fa308a592cc816bf318b1a851bf3 to your computer and use it in GitHub Desktop.
WooCommerce disable product link in Order page - Disable link to product in WooCommerce Order page (in My Account area). https://www.damiencarbery.com/2021/05/disable-product-link-in-woocommerce-order-page/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
Plugin Name: WooCommerce disable product link in Order page | |
Plugin URI: https://www.damiencarbery.com/2021/05/disable-product-link-in-woocommerce-order-page/ | |
Description: Disable link to product in WooCommerce Order page (in My Account area). | |
Author: Damien Carbery | |
Version: 0.1 | |
*/ | |
// See woocommerce/template/order/order-details-item.php | |
add_filter( 'woocommerce_order_item_permalink', '__return_false' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment