Hyperlink 删除特色图片上的链接

Hyperlink 删除特色图片上的链接,hyperlink,woocommerce,Hyperlink,Woocommerce,当我在Woocommerce中添加新产品时,我正试图删除特色图片上的链接。我在以前的版本中做过,但自从更新后,我似乎找不到我是如何/在哪里编辑的。试图浏览一些文件但没有用。有什么帮助吗?我最初使用css:指针事件:无 在link类上(我想我使用了.zoom img),但是我需要使用图像进行jQuery缩放,所以经过几个小时的搜索,我找到了这个解决方案,只需将它添加到您的functions.php中,它就会对您进行排序 /** * Remove link wrapping main produ

当我在Woocommerce中添加新产品时,我正试图删除特色图片上的链接。我在以前的版本中做过,但自从更新后,我似乎找不到我是如何/在哪里编辑的。试图浏览一些文件但没有用。有什么帮助吗?

我最初使用css:
指针事件:无

在link类上(我想我使用了.zoom img),但是我需要使用图像进行jQuery缩放,所以经过几个小时的搜索,我找到了这个解决方案,只需将它添加到您的functions.php中,它就会对您进行排序

/**
  * Remove link wrapping main product image in single product view.
  * @param $html
  * @param $post_id
  * @return string
*/

function custom_unlink_single_product_image( $html, $post_id ) {
    return get_the_post_thumbnail( $post_id, apply_filters( 'single_product_large_thumbnail_size', 'shop_single' ) );
}

add_filter('woocommerce_single_product_image_html', 'custom_unlink_single_product_image', 10, 2);