PDA

View Full Version : Signatures?


kofoid
02-25-2006, 09:30 PM
Is there a way to make it so certain usergroups can not see signatures? I.E. I do not want my unregistered guests to see my registered users signatures.

Reeve of shinra
02-25-2006, 11:59 PM
Edit your postbit template and edit this:


<if condition="$post['signature']">


To something like this:


<if condition="$post['signature'] OR !$bbuserinfo['userid']">


I think that should work

kofoid
02-26-2006, 04:39 PM
THANKS!!! You gave me a really good start. I figured it out - should be:


<if condition="$bbuserinfo[userid]">
<if condition="$post['signature']">
<!-- sig -->
<div>
__________________<br />
$post[signature]
</div>
<!-- / sig -->
</if>

<if condition="$show['postedited']">
</if>