• Resolved Kindfamily

    (@kindfamily)


    Hello,

    I am setting up my ecommerce shop, and would like to adjust the size of the images in the gallery. I have looked at tons of tutorials on how to do this, and most recommend that I use customizer>Woocommerce>product images, but there is not an option to adjust the size there. I have also added code to the functions.php file and then regenerated the thumbnails, but no luck. Any help is most appreciated!

    The page I need help with: [log in to see the link]

Viewing 4 replies - 1 through 4 (of 4 total)
  • Hey @kindfamily

    Are you referring to the images on the Shop page (at https://kindphotographer.com/shop/) or the images on a product page (such as https://kindphotographer.com/product/watchful/ )?

    Also, what’s the code you added to functions.php ?

    • This reply was modified 3 years, 5 months ago by Senff - a11n.
    Thread Starter Kindfamily

    (@kindfamily)

    Senff,

    I am referring to the images on the shop page. Here is the code that I used:

    add_filter( 'woocommerce_get_image_size_gallery_thumbnail', function( $size ) {
    return array(
    'width' => 150,
    'height' => 150,
    'crop' => 0,
    );
    } );

    But after seeing that it didn’t work, I removed the code.

    Thanks

    Hi there!

    In order to change the image sizes without any code, I recommend using a plugin like this one:

    https://wordpress.org/plugins/simple-image-sizes/

    Once you’ve changed them from WP-ADMIN > Settings > Media, you’ll have to regenerate the thumbnails and flush the site’s cache.

    I hope this helps!

    Warm regards,

    Thread Starter Kindfamily

    (@kindfamily)

    Hi Robert, apologies for the late reply, I assumed that no one had replied to this topic. I downloaded the plugin you mentioned, adjusted the size to 500×500 pixels, changed the crop to “center center”, saved changes, regenerated thumbnails, and finally purged all of my caches. Still no luck. The images stayed the same size.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Adjust Shop Image Size’ is closed to new replies.