Skip to content

Instantly share code, notes, and snippets.

@jamesckemp
Created March 13, 2018 14:17
Show Gist options
  • Save jamesckemp/c6567ec54aff4dff0bf86e0bb482f46f to your computer and use it in GitHub Desktop.
Save jamesckemp/c6567ec54aff4dff0bf86e0bb482f46f to your computer and use it in GitHub Desktop.
WooCommerce crop single image
<?php
/**
* Modify shop single sizes.
*
* @param array $size
*
* @return array
*/
function iconic_modifiy_shop_single( $size ) {
return array(
'width' => 600,
'height' => 600,
'crop' => 1,
);
}
add_filter( 'woocommerce_get_image_size_single', 'iconic_modifiy_shop_single', 10, 1 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment