Quote:
Originally Posted by WNxWakko
What about for forums that have the approval option. In my forum they have to wait till an admin approves the account. Does this support that part?
|
Not by default but you could easily add this... just open up the welcome_headers template, and find:
Code:
<if condition="$bbuserinfo[posts]<1">
Above this add:
Code:
<if condition="is_member_of($bbuserinfo, 4)">
<!-- unapproved user message -->
<br />
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<thead>
<tr>
<td class="alt1">
<phrase 1="$vboptions[bbtitle]">$vbphrase[welcome_notapproved]</phrase>
</td>
</tr>
</thead>
</table>
<!-- / unapproved user message -->
<else />
At the very end of the template, add </if>.
Then create a new GLOBAL phrase named welcome_notapproved with whatever text you want to show to the user. Let me know if you have any problems...