Looks like the version of spam-be-gone on try.nodebb.org needs to be updated, the issue was fixed here https://github.com/akhoury/nodebb-plugin-spam-be-gone/commit/0872198eddd3f9e1bfc137be2e747ea8c58cca5a
0When I create a define('forum/account/edit/username) the submit button is not work
-
Suppose that we have in the username's edit page and I want put a text after header, up the box where user put username and password. So I create:
define('forum/account/edit/username', function(header) { if($('#element').length) { $('#element').remove(); } $('.edit-form').prepend('<div id="element" class="alert alert-warning">HELLO</div>'); });
The problem is that in this way , the button with id"submitBtn" that let me ti change username is not work. I can't click it. Anyone can help me to resolve this?