Log in

View Full Version : Disable Post count for 1 member


Mellymonster
02-19-2009, 05:42 AM
Is there a way to disable post count for 1 or a few more members? Maybe a group setting?

Rene Kriest
02-19-2009, 06:00 AM
What exactly do you want?

Do you wanna disable the display of the postcount or postcount itself?

There is a mod to disable postcount for certain (sub) forums available via the mod section.

Mellymonster
02-19-2009, 02:39 PM
I want to disable all MY post count, to basically prove a point that I don't need a post count. On all forums, just for me, not anyone else at the moment.

DragonBlade
02-19-2009, 02:57 PM
In your postbit template, you could put (where the post count is shown),

<if condition="!is_member_of($post, $disabled_post_count_usergroup)">(post count stuff here)</if>


Replace $disabled_post_count_usergroup with the usergroup ID you want to disable post count for.

--------------- Added 1235063598 at 1235063598 ---------------

As an addendum, this would only "disable" post count in the post display, not anywhere else. My bad.

Mellymonster
02-19-2009, 03:24 PM
do I replace
<if condition="$show['postcount']">#<a href="showpost.php?$session[sessionurl]p=$post[postid]&amp;postcount=$post[postcount]" target="new" rel="nofollow" id="postcount$post[postid]" name="$post[postcount]"><strong>$post[postcount]</strong></a> &nbsp;</if>

with

<if condition="!is_member_of($post, $disabled_post_count_usergroup)">(post count stuff here)</if>
that or do I just add it around that area?

DragonBlade
02-19-2009, 03:28 PM
Just add it around the whole schpeel. :3

So it would be:
<if condition="!is_member_of($post, $disabled_post_count_usergroup)">
<if condition="$show['postcount']">#<a href="showpost.php?$session[sessionurl]p=$post[postid]&amp;postcount=$post[postcount]" target="new" rel="nofollow" id="postcount$post[postid]" name="$post[postcount]"><strong>$post[postcount]</strong></a> &nbsp;</if>
</if>


And be sure to replace $disabled_post_count_usergroup with the usergroup you want to disable post count for (the usergroup ID number, that is).