Tested and works!
I did change when you said
to
and it makes it so there are two greys in around instead of alternating, but it's ok.
And also when you said to look for this code:
Code:
if ($bbuserinfo[emailnotification]) {
$emailnotificationchecked="checked";
$emailnotificationnotchecked="";
} else {
$emailnotificationchecked="";
$emailnotificationnotchecked="checked";
}
and replace it with this code:
Code:
if ($bbuserinfo[sendtoforumdef]) {
$sendtoforumdefchecked="checked";
$sendtoforumdefnotchecked="";
} else {
$sendtoforumdefchecked="";
$sendtoforumdefnotchecked="checked";
}
It was above the previous searched code, so you have to scroll to the top. So that step should be before the other steps in the member.php.
I think that's it.
Thanks for the mini (yet kick ass) hack.