Hi, I tried several themes, the shots are referring to TwentyFourteen, but was the same with other themes:
1. this is after saving on the backend: https://www.diigo.com/file/image/cebrobqzcdbrcpoqqzbodqosrr/Screen+Shot+2014-09-30+at+09.11.37.jpg
I think you could fix by removing lines 134 and 141 from /inc/cores/save-settings.php
since they don’t refer to any input field… but, of course, maybe I’m missing something, I don’t know the plugin. That’s just a clue, starting from what I see.
2. this is after submitting the post from the front end (if I try to submit an image too): https://www.diigo.com/file/image/cebrobqzcdbrcpqoozbodqpaao/Screen+Shot+2014-09-30+at+09.12.43.jpg
I think you could fix by replacing on /inc/cores/save-post.php
:
$ext = end(explode('.',$image_name));
with
$exploded = explode('.',$image_name);
$ext = end($exploded);
Of course the “Warning” messages appear because of the notices, but if you could fix the other issue it would be nice. Thank you in advance. Hope to not bother you: your plugin seems very nice. Here my specifics:
WP 4.0, PHP 5.4.30
Manuel ??