Plugin Author
Mirte
(@mirte)
Definitely make sure that when you uninstall this plugin, your maintenance mode is off, otherwise it will stay stuck in the maintenance mode.
To undo this, go into the root of your WordPress install in FTP, make sure that hidden files are visible (most FTP clients have this option) and delete the .maintenance file.
That should do the trick.
So for everyone who’s wondering why unchecking “Moderate entries before publishing them” doesn’t really change anything: there’s a little bug in functions/gwolle_gb_save_entry.func.php. Luckily, it’s very easy to fix it:
On line 60 and 61 this code
".$entry['is_checked'].",
".$entry['is_spam']."
needs to be changed to this
".$entry['is_spam'].",
".$entry['is_checked']."
That’s all!