MyBB Community Forums

Full Version: Username-editable description?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello, searched forums Huh but can't find info on adding a piece of text next to or under username in registration, which describes what the username can be.

As I have a private and professional forum, I want to state:

"As this is a private professional forum, please use your real name (not an alias) as your username."

I can't find where to add this in a template or as plugin.
thank you
admin panel >> Templates >> your theme templates set >> Member Templates >> member_register

find code like below
<span class="smalltext"><label for="username">{$lang->username}</label></span>

you can add required description in above code like below
<span class="smalltext"><label for="username">{$lang->username}</label> As this is a private professional forum, please use your real name (not an alias)</span>
.m.
Perfect! Done it. Just what I wanted.
thank you very much