Quote:
Originally Posted by rjmjr69
Oh one thing is there any way possible to set this as the default or even only option for new members as well as present members?
|
To do this, edit the plugin 'Set Enabled/Disabled' and replace the whole plugin with:
PHP Code:
global $vbulletin, $sig_shown;
$field = 'field' . $vbulletin->options['signature_only_shown_once_field'];
if (!isset($sig_shown[$post['userid']]) OR $vbulletin->userinfo[$field] != 'Yes')
{
$firstsig = 0;
if ($post['signature'])
{
if ($vbulletin->userinfo[$field] == 'Yes' OR $vbulletin->userinfo[$field] == '')
{
$sig_shown[$post['userid']] = 1;
}
}
}
else
{
$firstsig = 1;
}
Then edit the custom field and put 'Yes' as the top option.