Advertisement
Guest User

Untitled

a guest
Apr 7th, 2022
39
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. add_filter( 'woocommerce_get_image_size_gallery_thumbnail', 'override_woocommerce_image_size_gallery_thumbnail' );
  2. function override_woocommerce_image_size_gallery_thumbnail( $size ) {
  3. // Gallery thumbnails: proportional, max width 200px
  4. return array(
  5. 'width' => '170',
  6. 'height' => 170,
  7. 'crop' => 0,
  8. );
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement