'262', // px 'height' => '325', // px 'crop' => 1, ); $single = array( 'width' => '555', // px 'height' => '688', // px 'crop' => 1, ); $thumbnail = array( 'width' => '83', // px 'height' => '103', // px 'crop' => 1, ); // Image sizes update_option( 'shop_catalog_image_size', $catalog ); // Product category thumbs update_option( 'shop_single_image_size', $single ); // Single product image update_option( 'shop_thumbnail_image_size', $thumbnail ); // Image gallery thumbs } add_action( 'after_switch_theme', 'shop_isle_woocommerce_image_dimensions', 1 ); /** * Number of thumbnails per row in product galleries * * @return int */ function shop_isle_thumb_cols() { return 6; } add_filter( 'woocommerce_product_thumbnails_columns', 'shop_isle_thumb_cols', 99 );