Woocommerce删除特色图片上的链接

时间:2013-07-25 04:14:44

标签: hyperlink woocommerce

当我在Woocommerce中添加新产品时,我正在尝试删除特色图片上的链接。我在之前的版本中做过,但由于更新我似乎无法找到我编辑它的方式/位置。试图查看一些文件无济于事。有什么帮助吗?

1 个答案:

答案 0 :(得分:11)

我最初使用的是css:pointer-events:none;

在链接类(我认为我使用.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);
相关问题