Nicolas Juen
Forum Replies Created
-
Forum: Plugins
In reply to: [Simple Image Sizes] custom size not an option when inserting image into postClosing this 🙂
Forum: Plugins
In reply to: [Simple Image Sizes] italian translationHi !
You can make a pull request on the github for the translations :
https://github.com/Rahe/Simple-image-sizesThank you !
RaheForum: Plugins
In reply to: [Simple Image Sizes] Image resolutionHi,
You have to change the Wp_Image_Editor class for using higher DPI :
http://wordpress.stackexchange.com/questions/105526/how-to-modify-media-library-images-dpi-image-quality-down-to-make-small-in-sizBut i’m not sure this will work correctly.
Rahe.
Forum: Plugins
In reply to: [Simple Image Sizes] Unable to delete custom sizesHi,
I’m glad this is working 🙂
Rahe
Forum: Plugins
In reply to: [Simple Image Sizes] Can't save optionsHi!
The image sizes declared on your theme cannot be removed, you have to use filters to remove them from the global.
Rahe
Forum: Plugins
In reply to: [Simple Image Sizes] Language and heightHi !
Yes the plugin is in English, but I’m French so there can be mistakes :).
For auto height you have to put a very high image size like 999999 and then only the width will be used.Forum: Plugins
In reply to: [Simple Image Sizes] Fatal errorHi !
I better understand the problem now, I will make an upadte soon for the 4.0 🙂Rahe
Forum: Plugins
In reply to: [Simple Image Sizes] Basic, Step-by-step instructions for image sizingHi,
It seems that the javascript is distording the images, try to disable your javascript and realod the page. If the images are well displayed, then this is the javascript.
You can copy/paste the image url in your browser and check if the size is right.Rahe
Forum: Fixing WordPress
In reply to: Can I safely remove generated thumbs?Hi!
You can use something like this :
https://wordpress.org/plugins/dynamic-image-resizer/
that generate the image sizes when the user call it.Or you can use this plugin :
https://wordpress.org/plugins/wp-thumb/
The plugin continues to generate the images but in a cache folder so if you want to clear it up you can. But when the user call a deleted image, the plugin detects it and generate it on the fly and save it.Forum: Plugins
In reply to: [Simple Image Sizes] Unable to delete custom sizesHi !
If the sizes are still displayed it’s because they are still registered somewhere in PHP on your theme or somewhere else.
Search for ‘add_image_size’ in your site source code.
Maybe WP retina x2 is getting all image sizes that have already been generated on the site, the old images with these sizes are still on the image metadata and the files still exists on your disk.Forum: Plugins
In reply to: [Simple Image Sizes] Fatal errorOk,
Can you give me more details about the error, like all the backtrace ?
Thank you
Forum: Plugins
In reply to: [Simple Image Sizes] Fatal errorHi,
There is no PHP on this file, check you have the right code on the file :
https://github.com/Rahe/Simple-image-sizes/blob/master/templates/admin-js.htmlHi,
Yes of course, simple image sizes can just add new image sizes on WordPress and wp retina generate x2 images.
Just do not use the simple image sizes image regeneration or the retina images will be replaced.Forum: Plugins
In reply to: [Simple Image Sizes] custom size not an option when inserting image into postOk..
Just replaceset_time_limit( 60 );by@set_time_limit( 60 );.
I will add this for the next release, thank you !Forum: Plugins
In reply to: [Simple Image Sizes] custom size not an option when inserting image into postFor the old images this is normal, you have to regenerate the sizes.
For the second script it seems that the response of the server is corrupted with some data, you have to check the xhr response made by the script.
Try to deactivate all the other plugins and change to a default theme, then activate only this plugin. If it’s working then this is not my plugin 😉