The issue is that every module calls the template, meaning you would have to change every module to get this working.
In this case you need to look at membership_levels.inc.php (inc folder)
From line 643 you see the following code
bx_import('BxDolEmailTemplates');
$oEmailTemplate = new BxDolEmailTemplates();
$aTemplate = $oEmailTemplate->getTemplate('t_MemChanged', $iMemberId);
$aMembershipInfo = getMembershipInfo($iMembershipId);
$aTemplateVars = array(
'MembershipLevel' => $aMembershipInfo['Name']
);
if ($isSendMail)
sendMail( $aProfileInfo['Email'], $aTemplate['Subject'], $aTemplate['Body'], $iMemberId, $aTemplateVars);
What you need to do is set /* before on the empty line before it (line 642)
Now set */ after the last line, on the empty line (line 654)
Be careful, see the difference between the two things you need to set?
/*
all text between the /* and */ is seen as text and not executed. Meaning the email template is not loaded and no email is send.
*/
Hope this helps!
Good luck,
Denre
Dedicated servers for as little as $32 (28 euro) - See http://denre.com for more information