MyBB Community Forums

Full Version: How do i add a note to the registration page?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I would like to add a little note in the registration page just above the submit button saying something like please remember to check your junk mail folder for your activation email. How can i do this?
You'll need the edit member_register template, look at my last post
No way of adding text to members.php?
Try this

<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
<tr><td class="trow1">
Please, make sure check your spam folder for the registration email.
</td></tr>
</table>

Put that in your member_register template, below:

<input type="hidden" name="step" value="registration" />
<input type="hidden" name="action" value="do_register" />
Great thanks that worked a treat.