Replace product link with just product name on WooCommerce downloads page

admin2025-01-07  4

In WooCommerce when we go to "Downloads" section, list of downloads is displayed which contain product name(linked to the product) and link to download the file.

Is there a way to remove the link of product and just display product name?

In WooCommerce when we go to "Downloads" section, list of downloads is displayed which contain product name(linked to the product) and link to download the file.

Is there a way to remove the link of product and just display product name?

Share Improve this question asked Apr 10, 2018 at 20:46 Harish ChouhanHarish Chouhan 7953 gold badges10 silver badges22 bronze badges
Add a comment  | 

1 Answer 1

Reset to default 0

Remove the product link from the product name on MY Account Downloads

// Display the product name without the link 
add_action( 'woocommerce_account_downloads_column_download-product', 'custom_account_downloads_product_column' );
function custom_account_downloads_product_column( $download ){
    // Display the product name without the link
    echo esc_html( $download['product_name'] );
}
转载请注明原文地址:http://conceptsofalgorithm.com/Algorithm/1736255755a306.html

最新回复(0)