ok, so someone asked how to add a note to the registration form, so i came up with this little tutorial to do it.
First go to templates & style>templates>YOURTHEME>member templates and find member_register, once you found it, open it and search for this code, around line 132.
Code:
<input type="hidden" name="step" value="registration" />
<input type="hidden" name="action" value="do_register" />
below the code above, add this under it
Code:
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
<tr><td class="thead"><strong>Additional Information!</strong></td></tr>
<tr><td class="trow1">
<p><big>Please, make sure to check your spam folder for the registration email</big></p>
</td></tr>
</table>
Don't forget to put a <br /> tag before
Code:
<br /><input type="submit" class="button" name="regsubmit" value="{$lang->submit_registration}" />
just a simple tutorial, hope you can find it useful, report any problems here