the problem is the unactivated users get the same msg as COPPA users. i want seperate msg for thos 2 usegroups cause COPPA users have already confirmed their email. how to ? i think the older version had that.
edit
what i did. i created a phrase welcome_coppa and in the welcome header template
i added
Code:
<if condition="is_member_of($bbuserinfo, 4) AND $vboptions[wlhunconfirmed] AND !$welcomehdr">
<!-- / coppa user message -->
<br />
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="alt1">
<phrase 1="$vboptions[bbtitle]" 2="register.php?do=requestemail" 3="sendmessage.php$session[sessionurl]" 4="$bbuserinfo[username]">$vbphrase[welcome_coppa]</phrase>
</td>
</tr>
</table>
<!-- / coppa user message -->
<if condition="$welcomehdr = '1'"></if></if>
right after
Code:
<!-- / unconfirmed user message -->
<if condition="$welcomehdr = '1'"></if></if>
and now i have seperate messages for coppa and unactivated users