How to Use Shortcodes in Beaver Builde...
Optimize your Beaver Builder layouts! Learn how to use shortcodes in Layout CSS &...

WPCodeBox
426
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>' );
}





Disable WP-Cron for better WordPress performance and optimized site speed.
