Hi All
I am using the code below in the PostBit Template (3.5.4) to show a default signature for those who don't have one set up. The problem is it doesn't show the
DEFAULT SIGNATURE HERE for users with no signature. However, if I remove the top If statement (<if condition="$post['signature']">) and its matching </if> it does show when a user doesn't have a signature. The problem of course is users with Signatures turned off are seeing the Default Signature on all posts!
PHP Code:
<if condition="$post['signature']">
<!-- sig -->
<div>
__________________<br />
<if condition="$post[signature]">$post[signature]
<else />
DEFAULT SIGNATURE HERE
</if>
</div>
<!-- / sig -->
</if>