Quote:
Today at 12:42 AM ranger2kxlt said this in Post #11
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.
|
If you do not add the template to the templatesused line, you will create another query doing it this way.
I'm curious, what would you ever need to edit with this? You only have "Name:" to deal with.