im facing a prob in here
i'm using vb 3.0.7
and in ur documentation: extra_options_install_1_1.txt
Code:
open member.php(this part is optional, it will display the extra profile feilds in the members public profile page)
find
$profilefields = $DB_site->query("
SELECT profilefieldid, required, title, type, data, def, height
FROM " . TABLE_PREFIX . "profilefield
WHERE form = 0 " . iif(!can_moderate(), "
AND hidden = 0") . "
ORDER BY displayorder
");
replace with
$profilefields = $DB_site->query("
SELECT profilefieldid, required, title, type, data, def, height
FROM " . TABLE_PREFIX . "profilefield
WHERE form = 0 OR 6 " . iif(!can_moderate(), "
AND hidden = 0") . "
ORDER BY displayorder
");
save and close member.php
well I can't seem to find the code so I can replace it :\
instead I found another similar code
Code:
$profilefields = $DB_site->query("
SELECT profilefieldid, required, title, type, data, def, height
FROM " . TABLE_PREFIX . "profilefield
WHERE form = 0 " . iif(!($permissions['genericpermissions'] & CANSEEHIDDENCUSTOMFIELDS), "
AND hidden = 0") . "
ORDER BY displayorder
");
what should I do, I really do want to display the info on member.php