Plugin Author
Brecht
(@brechtvds)
You could prevent the creating of those thumbnail sizes by adding the following code to your theme’s functions.php file:
function wprm_remove_image_sizes() {
remove_action( 'after_setup_theme', array( 'WPRM_Metadata', 'metadata_image_sizes' ) );
}
add_action( 'after_setup_theme', 'wprm_remove_image_sizes', 1 );
Any particular problem with having those thumbs exist? They are important for the recipe metadata, which is usually the main reason for using WPRM.
THX. It works.
The system stores thumbs for each image i uploaded. I also optimize and adjust my images before uploading them.
Plugin Author
Brecht
(@brechtvds)
You really should have those 3 different ratios as part of the metadata. It’s what Google wants.
If you’re worried about storage I recommend using this plugin instead:
https://wordpress.org/plugins/fly-dynamic-image-resizer/