PDA

View Full Version : How Do I Disable Post Count?


dbirosel
07-30-2007, 05:53 PM
As an Admin, i careless about my post count. How do I make my post count disappear?

Kirk Y
07-30-2007, 06:27 PM
For just you or everyone on your board?

Shazz
07-30-2007, 06:29 PM
I would just remove it from postbit :)

dbirosel
07-30-2007, 06:55 PM
Just me. I don't want anyone knowing how many posts i have.

tuga-gsm
07-30-2007, 07:00 PM
you can easely delete the line in postbit

EnIgMa1234
07-30-2007, 07:02 PM
That will delete everyones^^

try this:

find

$post[posts]


Replace with

if condition="is_member_of($bbuserinfo, 6)">

<else />
$post[posts]
</if>

This will do it for postbit

Kirk Y
07-30-2007, 07:08 PM
Instead of:
if condition="is_member_of($bbuserinfo, 6)">

<else />
$post[posts]
</if>

Use this:
<if condition="!is_member_of($bbuserinfo, 6)">
$post[posts]
</if>

You also need to edit the relevant templates that display the post count elsewhere on the forum, e.g.: MEMBERINFO, memberlist, etc.