Quote:
Originally Posted by lordofgun
No luck on the sig, CMX. I edited, saved, and changed the sig several times. It shows up fine on the edit signature page, but nothing in postbit.
|
Found the issue, will be fixed in v1.1.8
Quote:
Originally Posted by caimakale
The signature shouldn't end up in the postbit should it? Usually it goes under the post, and the only time it is displayed is when the user makes a new post. The signature won't show up on old posts the user made unless the user had a different signature when they made the post.
|
There was a slight issue that will be resolved in v1.1.8
A temporary fix until v1.1.8 comes out is to add a plugin to postbit_display_start and put in the following code:
Code:
// check if this user is allowed to use a signature
if ($this->post['otherflags'] & 8)
{
// verify they have a signature set
if ($this->post['signature'] != '')
{
// adjust some flags so it will show
$this->post['showsignature'] = true;
$this->cache['perms'][$this->post['userid']]['genericpermissions'] |= $this->registry->bf_ugp_genericpermissions['canusesignature'];
}
}
If u do this, remember when u upgrade to v1.1.8, u would have to delete the plugin u added as it will add this plugin automatically when u import the v1.1.8 XML file when its released.
-CMX