Skip to content

Instantly share code, notes, and snippets.

@yanknudtskov
Created March 9, 2018 12:04
Show Gist options
  • Save yanknudtskov/fb4d9bfa44ebbc895c0a65924566c30a to your computer and use it in GitHub Desktop.
Save yanknudtskov/fb4d9bfa44ebbc895c0a65924566c30a 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