Quote:
Originally Posted by filmking
How can I delete the Welcome messages for "never posted" and "post_more_often"? Once members are fully registred these messages are causing members to get upset, they don't like being pestered. The other two encouraging completeing moderation and initial welcome are just fine and I want to keep those. Thanks
|
Edit the template welcomeheaders and remove:
Code:
<if condition="$bbuserinfo[posts]<1">
<!-- never posted message -->
<br />
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="alt1">
<phrase 1="$bbuserinfo[username]" 2="$vboptions[bbtitle]">$vbphrase[welcome_neverposted]</phrase>
</td>
</tr>
</table>
<!-- / never posted message -->
<else />
<if condition="$headerstime - 1209600 > $bbuserinfo[lastpost]">
<!-- hasnt posted lately message -->
<br />
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="alt1">
<phrase 1="$bbuserinfo[username]" 2="$vboptions[bbtitle]">$vbphrase[welcome_postmoreoften]</phrase>
</td>
</tr>
</table>
<!-- / hasnt posted lately message -->
</if>
</if>