Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save madhvendras84/e20b0ba25a0826f98b7367b34cb70e7f to your computer and use it in GitHub Desktop.
Save madhvendras84/e20b0ba25a0826f98b7367b34cb70e7f to your computer and use it in GitHub Desktop.
/**
* Increase WooCommerce product thumbnail dimensions
*/
add_filter( 'woocommerce_get_image_size_gallery_thumbnail', function( $size ) {
return array(
'width' => 300,
'height' => 300,
'crop' => 0,
);
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment