Issue when there is only 1 notice
-
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 yourplugin.php
file.Hope that can be resolved soon ??
Cheers,
Damien
- The topic ‘Issue when there is only 1 notice’ is closed to new replies.