Sure..
The VERY first change that needs to be made to the "member.php" file says find
Code:
eval("dooutput(\"".gettemplate("modifyprofile")."\");");
and place
Code:
// Leave Away Message in Profile (v1.2)
if ($bbuserinfo[away]=="1") {
$awaystatus = "<font color=\"{hovercolor}\"><b>You have been marked as 'away' since ".vbdate($calformat1, $bbuserinfo[awaydate])."</b></font>";
$away1checked = "checked";
$returndate = explode("-",$bbuserinfo[returndate]);
$dayname = "day".$returndate[2]."away";
$$dayname = "selected";
$monthname = "month".$returndate[1]."away";
$$monthname = "selected";
$yearname = "year".$returndate[0]."away";
$$yearname = "selected";
} else {
$awaystatus = "select whether you are away or not";
$away0checked = "checked";
}
eval("\$awaytext = \"".gettemplate("modifyprofile_away")."\";");
// Leave Away Message in Profile (v1.2)
ABOVE IT.... I was placing it AFTER it...that was why it wasn't working correctly.
Hope that helps.