MyBB Community Forums

Full Version: How to Disable Signature with pictures
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How to disable pictures only for not upgraded members?
If you got the php in templates plugin you can do:

Go to your postbit template find:

{$post['signature']}

Then do:

<if $mybb->user['guid'] != Upgrade ID here then>
echo "Only members can see this";
<else>
{$post['signature']}
</else>
</if>