PDA

View Full Version : Looking for a hack that......


muzicmax
07-17-2003, 06:56 AM
When you register you don't get the invisible option or the option to allow admin not to send you e-mail ( it is automaticly "yes").
this way here they cannot browse your forums invisible. Also they cannot deny you to e-mail them . I have already figured out how to take it away in user cp but it is a pain to manually change everything all the time when they register and I have to be logged on as admin to do it. Is there a hack for this out or at least one of them. If not could someone make one for me?
Thanks

EvilLS1
07-17-2003, 07:40 AM
No hack needed.. Just edit the registration templates.

Find this:


<tr>
<td bgcolor="{secondaltcolor}"><normalfont><b>Allow Bulletin Board Administrators and Moderators To Send You Email Notices?</b></normalfont></td>
<td bgcolor="{secondaltcolor}"><normalfont>
<input type="radio" name="allowmail" value="yes" checked> yes
<input type="radio" name="allowmail" value="no"> no
</normalfont></td>
</tr>
<tr>
<td bgcolor="{firstaltcolor}"><normalfont><b>Invisible Mode?</b></normalfont><br>
<smallfont>Selecting yes allows you to surf the forums without appearing in the 'Logged In Users' list.</smallfont></td>
<td bgcolor="{firstaltcolor}"><normalfont>
<input type="radio" name="invisible" value="yes"> yes
<input type="radio" name="invisible" value="no" checked> no
</normalfont></td>
</tr>


Replace it with this:


<input type="hidden" name="allowmail" value="yes">
<input type="hidden" name="invisible" value="no">

muzicmax
07-17-2003, 08:25 AM
Thanks so much that was all I needed THANKYOU!! :banana:

EvilLS1
07-17-2003, 08:34 AM
Yes, and you're welcome.