This is what I've put in my functions.php:
Code:
if ($post[field2]!="") {
eval("\$post[field2] = \"".gettemplate("postbit_location")."\";");
} else {
$post[field2]="";
}
if ($post[joindate]!="") {
eval("\$post[joindate] = \"".gettemplate("postbit_registered")."\";");
} else {
$post[joindate]="";
}
if ($post[posts]!="" and $post[posts]!="0") {
eval("\$post[posts] = \"".gettemplate("postbit_posts")."\";");
} else {
$post[posts]="";
}
Then make three new templates, postbit_location, postbit_posts and postbit_registered.
All they should contain is (example):
Code:
Posts: $post[posts]<br>
What all the above does it makes the stats within postbit invisible when someone hasn't made any posts, hasn't filled in a location, or is a guest (so of course hasn't filled any of the info in).