In the registercoppa and registeradult templates, find this:
Code:
<tr>
<td bgcolor="#1C5780"><normalfont><b>Allow Bulletin Board Administrators and Moderators To Send You Email Notices?</b></normalfont></td>
<td bgcolor="#1C5780"><normalfont>
<input type="radio" name="allowmail" value="yes" checked> yes
<input type="radio" name="allowmail" value="no"> no
</normalfont></td>
</tr>
and replace it with this:
Code:
<input type="hidden" name="allowmail" value="yes">
Then, in modifyoptions template, find this:
Code:
<tr>
<td bgcolor="#1C5780"><normalfont><b>Allow Bulletin Board Administrators and Moderators To Send You Email Notices?</b></normalfont></td>
<td bgcolor="#1C5780"><normalfont>
<input type="radio" name="allowmail" value="yes" $allowmailchecked> yes
<input type="radio" name="allowmail" value="no" $allowmailnotchecked> no
</normalfont></td>
</tr>
and replace it with this:
Code:
<input type="hidden" name="allowmail" value="yes">