5

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

4

1 回答 1

12

我最初使用 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);
于 2013-11-25T20:40:46.550 回答