@deathemperor1st
What about just
1) Create a Dropdown (rr radio) fieldx with Male, Female, Undisclosed
2) Put Male.gif, Female.gif and Undisclosed.gif in your images/misc folder
3) In Template postbit
Code:
<img src="$stylevar[imgdir_misc]/$post[fieldx].gif" alt="Gender: $post[fieldx]">
?
@7thgenCivic.Com
In functions.php FIND
PHP Code:
$usercache["$userid"] = $user;
ABOVE that ADD
PHP Code:
require_once('./includes/functions_bbcodeparse.php');
foreach ($user as $key => $val) {
if (preg_match("/field\d*/", $key))
$user[$key] = parse_bbcode($val);
}
This should work.