Advertisement
Guest User

Untitled

a guest
Mar 20th, 2019
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. <?php
  2.  
  3. /* remove image zoom on hover in woo product catalog */
  4. function remove_image_zoom_support() {
  5. remove_theme_support( 'wc-product-gallery-zoom' );
  6. }
  7. add_action( 'wp', 'remove_image_zoom_support', 100 );
  8.  
  9. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement