379

How to Remove Product Image Thumbnail Links in WooCommerce

Powered by WPCodeBox

Prevent accidental lightbox pop-ups! This WooCommerce code snippet helps website owners remove product image thumbnail links on single product pages, enhancing user experience and site control.


/**
 * Author: WP Turned UP
 * Author URI: https://wpturnedup.com
 */
 
 
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>' );
}

Other Snippets

WPCodeBox is a WordPress Code Snippets Manager that allows you to share your WordPress Code Snippets across your sites.