Skip to content

Instantly share code, notes, and snippets.

@bigdigital
Created April 11, 2017 08:59
Show Gist options
  • Save bigdigital/21f495188841e0beef936e52c1a4d04d to your computer and use it in GitHub Desktop.
Save bigdigital/21f495188841e0beef936e52c1a4d04d to your computer and use it in GitHub Desktop.
WooCommerce disable magnification / zoom
add_action( 'wp_enqueue_scripts', 'dt_disable_wc_zomm' );
function dt_disable_wc_zomm() {
wp_dequeue_script( 'zoom' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment