Created
June 25, 2019 09:21
-
-
Save nvourva/f1080249ba1268aaca3ecb01dcc289b2 to your computer and use it in GitHub Desktop.
Modify product gallery thumb aspect ratio
This file contains 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 | |
// Added on 'after_theme_setup'. | |
add_filter( 'woocommerce_get_image_size_gallery_thumbnail', 'ci_theme_woocommerce_gallery_thumb_size' ); | |
function ci_theme_woocommerce_gallery_thumb_size() { | |
return array( | |
'width' => 150, | |
'height' => 203, | |
'crop' => 1, | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment