WhaLberg
03-29-2007, 08:32 AM
You want users to have signatures as size 1 no matter whatever what they set it but you don't know how.
There are 3 different ways to do that.
1) Go to AdminCP -> Usergroups -> Select the Usergroup -> Signature Permissions (This works with 3.6.x) -> Set the value of "Maximum Value of x for BBCode" to 1.
2) Go to your postbit (or postbit_legacy) template and find:
$post[signature]
Replace it with:
<font size="1">$post[signature]</font>
3) In the profile.php file, find:
$signature = $vbulletin->GPC['message'];
Replace it with:
$signature = "[size=1]" . $vbulletin->GPC['message'] . "";
And that's all.
Please note that those 3 ways are different ways which do the same thing. You don't need to others if you do one. And the first way works with vBulletin 3.6.x version.
Don't forget to click install.
See you later at a new tutorial. :)
There are 3 different ways to do that.
1) Go to AdminCP -> Usergroups -> Select the Usergroup -> Signature Permissions (This works with 3.6.x) -> Set the value of "Maximum Value of x for BBCode" to 1.
2) Go to your postbit (or postbit_legacy) template and find:
$post[signature]
Replace it with:
<font size="1">$post[signature]</font>
3) In the profile.php file, find:
$signature = $vbulletin->GPC['message'];
Replace it with:
$signature = "[size=1]" . $vbulletin->GPC['message'] . "";
And that's all.
Please note that those 3 ways are different ways which do the same thing. You don't need to others if you do one. And the first way works with vBulletin 3.6.x version.
Don't forget to click install.
See you later at a new tutorial. :)

