I made it so i could have it as a template instead... therefor making it easier to edit if i ever needed to.
Hope you dont mind me adding this...
*Note... you need to have installed the hack before adding this.
## in admin/functions.php
Find:
PHP Code:
if ($post[fieldX]!="") {
$realname="<smallfont>Name: <b>$post[fieldX]</b></smallfont><br>";
} else {
$realname="";
}
Change to:
PHP Code:
if ($post[fieldX]!="") {
eval("\$realname = \"".gettemplate("postbit_realname")."\";");
} else {
$realname="";
}
Now create the template called postbit_realname and add the following:
PHP Code:
<smallfont>Name: <b>$post[fieldX]</b></smallfont><br>
I just think the above makes it easier to edit if you ever needed to. Enjoy.