Last active
July 27, 2018 09:24
-
-
Save Pamps/0eaa8e176b68c8d5d2446788729470be to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Change the image size used for the WooCommerce product gallery image zoom | |
// 'medium' or 'large' are normally the best options | |
add_filter( 'woocommerce_gallery_full_size', function( $size ) { | |
return 'medium'; | |
} ); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment