Hi,
I really don’t know why it’s not working anymore.
I did activate the plugin, Upload Url and Path Enabler, but this was not working properly and broke thumbnails in my Media library. When I deactivated it, I got my images back, but now Media File Renamer isn’t ‘switching on’ now. Not sure if that’s related…
Resolved
In class-media-rename.php replace the below
// Convert filename to post title
static function filename_to_title($filename) {
return ucwords( preg_replace(‘~[^a-zA-Z0-9]~’, ‘ ‘, $filename) );
}
with this
// Convert filename to post title
static function filename_to_title($filename) {
return $filename;
}