Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #1047627

    Since “ShortPixel Image Optimizer 4.12.3” is not compatible with “Simple Image Sizes 3.2.0”, I have a problem. I need suggestions on how to adjust image sizes without using the Simple Image Sizes extension. I need to adjust multiple image sizes that do not work in my layout. Thanks!

    #1047859

    Hey Roine,

    This article here can give you an idea how to do it
    https://www.wpbeginner.com/plugins/how-to-bulk-resize-large-images-in-wordpress/

    If you need further assistance please let us know.
    Best regards,
    Victoria

    #1047869

    Oh no! Sorry… I mean image dimensions, the width and height of the image. I use both extensions but the latest version of Short Pixel is not compatible with Simple Images Sizes. I need to use both, I need to find another solution.

    #1047948

    Hi,

    Please add following code to Functions.php file of your child theme

    add_filter( 'avf_modify_thumb_size', 'enfold_customization_modify_thumb_size', 10, 1 );
    function enfold_customization_modify_thumb_size( $size ) {
    $size['widget'] = array('width'=>250, 'height'=>250);
    $size['portfolio'] = array('width'=>250, 'height'=>250);
    $size['entry_with_sidebar'] = array('width'=>250, 'height'=>250);
    return $size;
    }

    Then regenerate thumbnails using this plugin – https://wordpress.org/plugins/regenerate-thumbnails/.
    You can find default sizes in Functions.php file of Enfold parent theme by searching “imgSize”

    Best regards,
    Yigit

    #1048080

    YES! Thank You and Merry Christmas to the best support team ever!

    #1048087

    Hi,

    You are welcome!
    Thank you! We wish you Merry Christmas and happy new year! :)

    Best regards,
    Yigit

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Change image sizes’ is closed to new replies.