• Resolved phj123

    (@phj123)


    Please tell me how I can keep the image settings like before and still update to 3.3? Now I have lost the ability to crop the thumbnail but don’t crop the shop_catalog image..

Viewing 15 replies - 1 through 15 (of 19 total)
  • Thread Starter phj123

    (@phj123)

    /**
    * Change Image.
    */
    function customize_image_sizes($sizes) {
    unset( $sizes[‘thumbnail’]);
    unset( $sizes[‘medium’]);
    unset( $sizes[‘medium_large’]);
    unset( $sizes[‘large’]);
    unset( $sizes[‘wysija-newsletters-max’]);
    unset( $sizes[‘woocommerce_thumbnail’]);
    unset( $sizes[‘woocommerce_single’]);
    unset( $sizes[‘woocommerce_thumbnail_2x’]);
    return $sizes;
    }
    add_filter(‘intermediate_image_sizes_advanced’, ‘customize_image_sizes’);
    add_image_size(‘responsive_small_medium’, 336, 336, false );
    add_image_size(‘responsive_medium_large’, 756, 756, false );
    add_image_size(‘shop_thumbnail’, 224, 224, true );
    add_image_size(‘shop_catalog’, 504, 504, false );
    add_image_size(‘shop_single’, 1134, 1134, false );

    Thread Starter phj123

    (@phj123)

    With this code in my function.php ‘m trying to resolve the issue and get back the old shop image sizes, but this doesn’t work though… at the moment the large main images jpg files are loading on the thumbnails catalog and singe image fields..

    I agree 100%: this change in the latest update causes display-problems in certain shops. There should be solution to use the “old” settings again.

    Plugin Contributor Mike Jolley (a11n)

    (@mikejolley)

    For thumbnails, you set 1:1 cropping in Appearance > Customizer > WooCommerce > Product Images.

    For single product pages, the image is always displayed as uploaded, uncropped.

    Thread Starter phj123

    (@phj123)

    Yes and what about the shop catalog image?
    If I set the thumbnail to crop I get also a cropped shop catalog image. Please tell me how I can hook the old image setup back to woocom

    Thread Starter phj123

    (@phj123)

    In the old situation I have my thumbnails cropped at 224px – my shop catalog image NOTcropped at 506px and my product image NOTcropped at 1134px. I generated retina images of all the images and let picturefill.js bring the right image to the right screen size. Now even my thumbnail are loaded with the full 2048PX image……..

    Thread Starter phj123

    (@phj123)

    For a advanced shop like this, with all the functionality woocommerce tries to bring with 3.3 already implemented, but way better, tis is only a big downgrade. The biggest downgraded is that if you want to crop the thumbnails you have to crop the shop catalog image. I need to know how I can fix this issue otherwise I’m forced to downgrade ??

    • This reply was modified 6 years, 9 months ago by phj123.
    Thread Starter phj123

    (@phj123)

    Actually for everyone this is a downgrade to be forced to have a cropped catalog image if they want a cropped thumbnail!!!
    Can you explain how to get the old image settings back within 3.3???

    Plugin Contributor Mike Jolley (a11n)

    (@mikejolley)

    There are 2 image sizes in 3.3.

    shop_catalog
    shop_single

    shop_single is on the main product page, and is always uncropped. There are no settings to enable cropping for this image size.

    The size settings in customizer apply to shop_catalog and only affect the catalog thumbnails (product grid).

    If you’re seeing cropping in other places it won’t be a WC image size, and may be a size used by your theme.

    Thread Starter phj123

    (@phj123)

    Do you even understand my request and the situation?

    Thread Starter phj123

    (@phj123)

    So tell me how do I accomplish to have things setup the way the are in 3.1.

    So if there is a single shop image and a catalog image, tell me where did the thumbnail go?

    Plugin Contributor Mike Jolley (a11n)

    (@mikejolley)

    The thumbnail size is not used anywhere.

    Thread Starter phj123

    (@phj123)

    Yes and now tell me how I can bring back the thumbnails with a crop! And also how I disable the by woocommerce 3.3 forced catalog retina image? Because I’m already useing retina, what a mess this update is!!!! I need a update proof solution….

    • This reply was modified 6 years, 9 months ago by phj123.
    Thread Starter phj123

    (@phj123)

    The old image settings are not still there if I give in 0 and 0 value in the customize page to disable the new image options….

    • This reply was modified 6 years, 9 months ago by phj123.
    • This reply was modified 6 years, 9 months ago by phj123.
    Caleb Burks

    (@icaleb)

    Automattic Happiness Engineer

    Your questions are a bit confusing to be honest, seems you are mixing up which images sizes there are and how they are used.

    If your site requires different handling for images, it will require some customization. You may need to hire a developer for this.

Viewing 15 replies - 1 through 15 (of 19 total)
  • The topic ‘3.3 image issue’ is closed to new replies.