New Products
Stylish Authentic Leather Laser Engraved Wallet (WLHS)
Scroll
/** * Shantety - WooCommerce product image size optimization. */ add_filter('woocommerce_get_image_size_single', function ($size) { return array( 'width' => 900, 'height' => 900, 'crop' => 0, ); }); add_filter('woocommerce_get_image_size_thumbnail', function ($size) { return array( 'width' => 500, 'height' => 500, 'crop' => 1, ); }); add_filter('woocommerce_get_image_size_gallery_thumbnail', function ($size) { return array( 'width' => 150, 'height' => 150, 'crop' => 1, ); });