将WooCommerce下载页面上的产品链接仅替换为产品名称

时间:2018-04-10 作者:Harish Chouhan

在WooCommerce中,当我们转到“下载”部分时,将显示下载列表,其中包含产品名称(链接到产品)和下载文件的链接。

有没有办法删除产品链接,只显示产品名称?

1 个回复
SO网友:Ahmad Waqas

从我的帐户下载的产品名称中删除产品链接

// 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\'] );
}

结束

相关推荐