Hello, this plugin you created, is very useful, thank you.
I’ve found plugin moves the thumbnails on creation to separate folder as described, still, the thumbnails are not being delivered from it’s new location, can you please advice how to have thumbnails and it’s paths updated within WordPress so the thumbnail images are utilized from that, separate folder.
]]>Hi —
Does your plugin allow me to change the location of the thumbnails folder? I am altering the upload path for a specific ACF field to plugins/s2member-files/, and I would like the thumbnails to be located in a folder that is not protected. So, /wp-content/uploads/thumbnails/ would be great, but it is not working for these files after altering the upload path, I’m assuming because it’s coded to go to {$upload_path}/thumbnails. Is there a filter I can add to alter the location of the thumbnails folder?
Thanks,
Kari
On windows servers, because there are backslashes in the path, they get removed when updating metadata.
I managed to fix an issue using wordpress’s wp_slash()
function
(although I could have probably used php’s addslash()
function)
class-fr-thumbnails-folder-image-resizer.php, line 168 :
$this->metadata['sizes'][$this->args['size']] = wp_slash($save_result);
I love the plugin’s intent. I’m using it in conjonction with another plugin that allows me to save images to a /*post-type*/*post-title*/ path.
Which makes a clean files organisation + thumbnails separation. NEAT
]]>I had a problem with mixed content warnings, but worked it out (non-secure url in wp-config site url override).
Great plugin! I’ve been looking for something like this for ages.