fahimmurshed

Disable the WooCommerce product zoom

Feb 5th, 2021 (edited)
402
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.67 KB | None | 0 0
  1. // Disable the zoom
  2. add_filter( 'woocommerce_single_product_zoom_options', 'custom_single_product_zoom_options', 10, 3 );
  3. function custom_single_product_zoom_options( $zoom_options ) {
  4.     // Disable zoom magnify:
  5.     $zoom_options['magnify'] = 0;
  6.  
  7.     return $zoom_options;
  8. }
  9.  
  10. //Change zoom event option:
  11. add_filter( 'woocommerce_single_product_zoom_options', 'custom_single_product_zoom_options', 10, 3 );
  12. function custom_single_product_zoom_options( $zoom_options ) {
  13.     // Changing the zoom event option:
  14.     $zoom_options['on'] = 'click';
  15.  
  16.     return $zoom_options;
  17. }
  18.  
  19. // Permanent disable
  20. add_filter( 'woocommerce_single_product_zoom_enabled', '__return_false' );
Add Comment
Please, Sign In to add comment