Yes.
Yes.
Yes! only product images are resized by default. However, you can also enable category images resizing in the plugin settings:
Yes you can! Since only product images are resized by default, you need to add this code snippet to your theme functions.php under Appearance → Theme Editor:
add_filter('wp_sir_resize_post_type', function($post_types){$post_types = (array) $post_types;$post_types[] = 'post';return $post_types;});
That's it!
Note: You can also resize images attached to any other post types, by just adding the post type to $post_types
array in the code snippet above:
add_filter('wp_sir_resize_post_type', function($post_types){$post_types = (array) $post_types;$post_types[] = 'post';$post_types[] = 'book';return $post_types;});
Yes you can! to do that you need to add this code snippet to your theme functions.php under Appearance → Theme Editor:
add_filter('wp_sir_is_attached_to', '__return_true');
Yes you can!
Yes you can! Just add this code snippet to your theme functions.php under Appearance → Theme Editor.
add_filter('wp_sir_process_frontend_upload', '__return_true');
Yes! Just make sure your server memory limit is set to at least 512M since bulk-import can be a resource-intensive task.
Yes! You can use the command wp media regenerate
to regenerate thumbnails to match your settings.
To resize existing images, "Regenerate Thumbnails" plugin will bulk-process the images and trigger our plugin to resize them. Once the process is finished, you can deactivate or delete the "Regenerate Thumbnails" plugin.
Deleting the plugin is not recommended since WooCommerce or some other plugins may revert changes. Also, when you delete the plugin some features will stop working including WebP images not to mention that any newly uploaded image won't get resized, obviously. The plugin is lightweight and doesn't affect website performances.
We're just a click away to answer all your questions. Contact us at support@sirplugin.com