drumsy,
Not sure why you had to edit the font and table color. Unless the replacements are different in 2.3.2, the hack should use the same font & table colors as the rest of your board.
I looked at a copy of register.php from 2.3.2, and the code is the same.. 2.3.2 just has some line breaks in different places.
In register.php Find:
Code:
$profilefields = $DB_site->query("
SELECT * FROM profilefield
WHERE editable = 1 ORDER BY displayorder
");
Replace with:
Code:
$profilefields=$DB_site->query("SELECT *
FROM profilefield
WHERE editable = 1
AND profilefieldid NOT IN (50,51,52,53,54,55,56,57)
ORDER BY displayorder");
Find:
Code:
$profilefields=$DB_site->query("SELECT maxlength,profilefieldid,required,title
FROM profilefield
WHERE editable = 1
ORDER BY displayorder");
Replace with:
Code:
$profilefields=$DB_site->query("SELECT maxlength,profilefieldid,required,title
FROM profilefield
WHERE editable = 1
AND profilefieldid NOT IN (50,51,52,53,54,55,56,57)
ORDER BY displayorder");
Then follow the rest of the hack instructions for editing member.php.