In a plugin on the
postbit_display_complete hook the signature text (already converted to HTML) is stored in:
Using the PHP function to count the length of a string you can get the number of characters:
PHP Code:
$siglength = strlen($post['signature']);
So you can do whatever you want-
PHP Code:
$siglength = strlen($post['signature']);
if ($siglength > 500)
{
$post['bigsig'] = 1;
}
else
{
$post['bigsig'] = 0;
}
Then in the template instead of:
Code:
<vb:if condition="$post[posts] < 10">
You make it:
Code:
<vb:if condition="$post['bigsig']">
And the mod will only run if the signature has over 500 characters.