简体   繁体   中英

Remove link from product name on WooCommerce my account downloads

In Woocommerce when we go to My account "Downloads" section, a 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?

Update 3:

Here is the way to remove the product link from the product name in 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'] );
}

Code goes in function.php file of your active child theme (or active theme). Tested and works

在此处输入代码

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM