Hi!
I found an issue in the plugin, when there is only 1 notice to be displayed, it never shows because you add by default: .notice, .error, .updated { display: none; }
& you check in JS if there is more than 1 notice: if( goodhtml.length > 1 ) { $('.wps-notice-center').show(); }
instead of checking if there is a notice at all like that: if( goodhtml.length ) { $('.wps-notice-center').show(); }
in your plugin.php
file.
Hope that can be resolved soon ??
Cheers,
Damien