Great Hack! Thank you Abe
How can I remove the "Thanked Posts/Thanked" bits that display in every user's post from certain usergroups?
UPDATE:
OK, I found this solution. If the user is a member of the X usergroup then show the code.
Quote:
<if condition="$post['usergroupid'] == X">
$template_hook[postbit_userinfo_right_after_posts]
</if>
|
And then you can use the ! to tell it to not show it to the X usergroup but show it to everyone else.
Quote:
<if condition="$post['usergroupid'] != X">
$template_hook[postbit_userinfo_right_after_posts]
</if>
|