Advertisement
BaapJaan

Single Product Page image lightbox

Apr 13th, 2022
1,116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.41 KB | None | 0 0
  1. add_action( 'init', 'my_remove_lightbox' );      
  2. function my_remove_lightbox() {      
  3.    remove_theme_support( 'wc-product-gallery-lightbox' );        
  4. }
  5. add_filter( 'woocommerce_single_product_zoom_enabled', '__return_false' );
  6. add_filter( 'woocommerce_single_product_image_thumbnail_html', 'custom_remove_product_link' );
  7. function custom_remove_product_link( $html ) {
  8.   return strip_tags( $html, '<div><img>' );
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement