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!
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
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.
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
YES! Thank You and Merry Christmas to the best support team ever!