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 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