Skip to content

Instantly share code, notes, and snippets.

@madeincosmos
Created August 6, 2019 08:40
Show Gist options
  • Save madeincosmos/fe24b6947974db147bd7e45d97b9bddb to your computer and use it in GitHub Desktop.
Save madeincosmos/fe24b6947974db147bd7e45d97b9bddb to your computer and use it in GitHub Desktop.
Scale WooCommerce gallery thumbnails to 180x180 px
function woo_custom_single_image_size ( $size ) {
$size['height'] = 180;
$size['width'] = 180;
$size['crop'] = 1;
return $size;
}
add_filter('woocommerce_get_image_size_gallery_thumbnail', 'woo_custom_single_image_size', 50, 1);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment