So here's my fix:
Make a copy of the
postbit_search template and edit it to look something like this: *edit* ok you could just use this code)
Code:
<a href="search.php?s=$session[sessionhash]&action=finduser&userid=$post[userid]">Posts</a>:
Then go to the
postbit template and change the line:
Posts: $post[posts]</smallfont></td>
to look like this:
$postlink $post[posts]</smallfont></td>
Then go to
functions.php and add the following code directly above:
// do posts from ignored users (this is around line 270 in the startbuildpostbit function)
Code:
if ($post[posts]=="N/A") {
$postlink="Posts:";
} else {
$postlink="<a href=\"search.php?s=$session[sessionhash]&action=finduser&userid=$post[userid]\">Posts</a>:";
}
Hopefully when your finished the registered members will have
Posts: 13 (as an example)
and guests will have
Posts:N/A .
If you would like the link to look different then you must play with the <a href> tag in the if....then statement added to functions.php file.
Hope I could help.
Scott
As I mentioned in my PM, this took me around 30 minutes to figure out and it is not even a hack.