That requires hacking.
Open admin/functions.php -
Find:
PHP Code:
$post[joindate]=vbdate($registereddateformat,$post[joindate]);
Underneath, add:
PHP Code:
if ($post[fieldx]=="") {
$badge = "";
} else {
$badge = "<img src=\"$post[fieldx]\">";
}
Replace x with the custom profile field id number.
Then in your postbit template, use $badge instead of the <img src> code for the badge to show up.
Do the same in member.php.
Find:
PHP Code:
// display user info
Underneath, add:
PHP Code:
if ($userinfo[fieldx]=="") {
$badge = "";
} else {
$badge = "<img src=\"$userinfo[fieldx]\">";
}
Replace x with the custom profile field id number.
Then in your getinfo template, use $badge instead of the <img src> code for the badge to show up.
Done!