如何删除 Woocommerce 产品页面图像锚点?
How to remove Woo commerce Product Page Image Anchor?
我是 2 年的 WordPress 开发人员。我在 Woocommerce 产品页面模板中遇到了一些问题。
- 我已经在 Woocommerce 中创建了产品。
- 打开产品 Detail/Single 页面。
- 单击产品图片时,它会在 popup/Same 页面中打开。
请帮我删除产品图片中的锚点。
提前致谢。
请使用以下代码从单个产品页面的缩略图中删除 link。
add_filter('woocommerce_single_product_image_thumbnail_html','wc_remove_link_on_thumbnails' );
function wc_remove_link_on_thumbnails( $html ) {
return strip_tags( $html,'<img>' );
}
我是 2 年的 WordPress 开发人员。我在 Woocommerce 产品页面模板中遇到了一些问题。
- 我已经在 Woocommerce 中创建了产品。
- 打开产品 Detail/Single 页面。
- 单击产品图片时,它会在 popup/Same 页面中打开。
请帮我删除产品图片中的锚点。
提前致谢。
请使用以下代码从单个产品页面的缩略图中删除 link。
add_filter('woocommerce_single_product_image_thumbnail_html','wc_remove_link_on_thumbnails' );
function wc_remove_link_on_thumbnails( $html ) {
return strip_tags( $html,'<img>' );
}