I'd like to add some phrases / messages as has been discussed in a number of posts. So that I can reduce template and phrase modifications to a minimum, can I change the xml file instead? For example, after 8 days I move accounts (signups) that have not activated their accounts to a special user group (long story - something I started several years ago...) Can I add something like:
PHP Code:
<if condition="is_member_of($bbuserinfo, 13)">
<!-- email verification not completed -->
<br />
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="alt1">
<phrase 1="$vboptions[bbtitle]">$vbphrase[email_verification_not_completed]</phrase>
</td>
</tr>
</table>
<!-- / email verification not completed -->
<else />
and at the bottom add
PHP Code:
<phrase name="[email_verification_not_completed]"><![CDATA[<<font color="red">Although you have Registered, your account has not been verified so is not yet active! To Activate your Registration you have to verify your Registration by clicking a special link in the Welcome email which was sent to you when you registered.</font> If you have lost this email, or if it never arrived, please go <a href="./register.php?do=requestemail">Here</a> to request another activation email be sent to you. If you suspect you entered an incorrect email address, go <a href="./sendmessage.php">Here</a> and let me know so I can fix your record in the database. Please be sure to adjust your spam filter to 'White List' (allow) e-mail from xxx.com so that the Verification / Activation e-mail can reach you.]]></phrase>
to the xml file.
My main interest is to be able to uninstall, if I need to, with as few template changes as possible.