The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#4
|
||||
|
||||
![]()
Alright- I think I got most of what you need working here. Before you do anything, please please please make a backup of your database; your post table at the least.
First of all... In SHOWTHREAD, replace: Code:
<if condition="$bbuserinfo['signature']"> <div style="float:$stylevar[right]"><label for="cb_signature"><input type="checkbox" name="signature" value="1" id="cb_signature" tabindex="5" checked="checked" />$vbphrase[show_your_signature]</label></div> </if> Code:
<input type="hidden" name="signature" value="1" id="cb_signature" /> Code:
<if condition="$bbuserinfo['signature'] != ''"><div><label for="cb_signature"><input type="checkbox" name="signature" value="1" id="cb_signature" tabindex="1" $checked[signature] />$vbphrase[show_your_signature]</label></div></if> Code:
<input type="hidden" name="signature" value="1" id="cb_signature" /> Code:
<if condition="$bbuserinfo['signature'] != ''"><div><label for="cb_signature"><input type="checkbox" name="signature" value="1" id="cb_signature" tabindex="1" $checked[signature] />$vbphrase[show_your_signature]</label></div></if> Code:
<input type="hidden" name="signature" value="1" id="cb_signature" /> Code:
<if condition="$bbuserinfo['signature']"><div><label for="cb_signature"><input type="checkbox" name="signature" value="1" id="cb_signature" tabindex="1" $checked[signature] />$vbphrase[show_your_signature]</label></div></if> Code:
<input type="hidden" name="signature" value="1" id="cb_signature" /> All we're doing is replacing all 0's with 1's in the showsignature field in the post table. You can do that via "Execute SQL Query" of the adminCP. In Manual Query, enter this: Code:
UPDATE post SET showsignature='1' WHERE showsignature='0' Make sense? After that, you should be all good to go. They won't be able to select no signature anymore, and all posts to date will show signatures. =D Any questions? Let me know. Feel free to use my messengers as well if you need quicker help. |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|