Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save INDIAN2020/21e05f6e6028230ac1c73be852e3a3fa to your computer and use it in GitHub Desktop.
Save INDIAN2020/21e05f6e6028230ac1c73be852e3a3fa to your computer and use it in GitHub Desktop.
Remove Zoom from WooCommerce Galleries
<?php
/*
* Remove Zoom from WooCommerce Galleries
*/
add_action( 'after_setup_theme', 'yanco_after_setup_theme', 100 );
function yanco_after_setup_theme() {
remove_theme_support( 'wc-product-gallery-zoom' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment