-
AuthorPosts
-
September 22, 2014 at 10:34 am #322900
Hi, good morning.
Ii this a normal behaviour or me doing something wrong ?
Might you please suggest how to avoid so many similar sized files being uploaded ?
Thank you.
September 22, 2014 at 9:06 pm #323283Hey macatokio!
That is the correct behavior. The theme, like most WordPress themes, uses a function built in to WordPress to create multiple sizes of the same image so that the theme can use them in delivering the content to users.
It not only cuts down on bandwidth but it increases performance to users.
Cheers!
DevinSeptember 24, 2014 at 9:45 pm #324644Hi Devin, thank you :)
Me, just wondering why similar sizes are being resized up to 3 times, e.g. 710×270, 710×375, 710×550 or 800×360 and 800×430.
Do we really need 3×710 or 2×800 or 2×450 resized images?
Let me please know about.
Cheers!
September 26, 2014 at 3:28 am #325375If you have other plugins installed that are also introducing image sizes then they could be similar sizes. The themes default sizes are:
$avia_config['imgSize']['widget'] = array('width'=>36, 'height'=>36); // small preview pics eg sidebar news $avia_config['imgSize']['square'] = array('width'=>180, 'height'=>180); // small image for blogs $avia_config['imgSize']['featured'] = array('width'=>1500, 'height'=>430 ); // images for fullsize pages and fullsize slider $avia_config['imgSize']['featured_large'] = array('width'=>1500, 'height'=>630 ); // images for fullsize pages and fullsize slider $avia_config['imgSize']['extra_large'] = array('width'=>1500, 'height'=>1500 , 'crop' => false); // images for fullscrren slider $avia_config['imgSize']['portfolio'] = array('width'=>495, 'height'=>400 ); // images for portfolio entries (2,3 column) $avia_config['imgSize']['portfolio_small'] = array('width'=>260, 'height'=>185 ); // images for portfolio 4 columns $avia_config['imgSize']['gallery'] = array('width'=>845, 'height'=>684 ); // images for portfolio entries (2,3 column) $avia_config['imgSize']['magazine'] = array('width'=>710, 'height'=>375 ); // images for magazines $avia_config['imgSize']['masonry'] = array('width'=>705, 'height'=>705 , 'crop' => false); // images for fullscreen masonry $avia_config['imgSize']['entry_with_sidebar'] = array('width'=>845, 'height'=>321); // big images for blog and page entries $avia_config['imgSize']['entry_without_sidebar']= array('width'=>1210, 'height'=>423 ); // images for fullsize pages and fullsize slider
You can see and edit all of your sizes that WordPress has registered with this plugin:http://wordpress.org/extend/plugins/simple-image-sizes/
September 28, 2014 at 4:43 pm #326165Hi Devin,
Let me please add to your list 3 default sizes being created by WordPress (Media Settings) + the original file image (WP default uploading process).
12 Enfold default images size plus 4 WordPress default images resized. Total of 16 images resized for each image being uploaded.
Devin: I would like to avoid using any plugin, actually just have Better WordPress Minify to speed-up
Might you please suggest a way to “manually” avoid certain Enfold default img to be created, which Enfold file should I modify and how to ?
Many thanks.
Cheers!
September 28, 2014 at 6:08 pm #326184Plugins are not something you should be scared of using. Simple image sizes is a great plugin and keeps you from manually editing any files.
If you wanted to however you would remove the code from the functions.php within the theme. Keep in mind what you are removing and what effects that will have on images generated for front end use.
September 28, 2014 at 6:28 pm #326200Thank you, Devin.
-
AuthorPosts
- The topic ‘Too many image resized as uploading any image ?’ is closed to new replies.