The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
Signature forced to bottom (postbit_legacy) Details »» | |||||||||||||||||||||||||||
Signature forced to bottom (postbit_legacy)
Developer Last Online: Feb 2013
This mod will force all user's signatures to the bottom of their post. This is helpful if you have custom fields displayed under your avatars. Only 3 code changes are required in the postbit_legacy template. It'll take you about one minute to install this.
I have attached a couple screenshots showing what this mod does. I also have enabled this on my forums and you can see an example there: http://forums.ancientclan.com/ In postbit_legacy, find: Code:
<td class="alt2" width="175" style="border: $stylevar[cellspacing]px solid $stylevar[tborder_bgcolor]; border-top: 0px; border-bottom: 0px"> Code:
<td class="alt2" width="175" rowspan="2" style="border: $stylevar[cellspacing]px solid $stylevar[tborder_bgcolor]; border-top: 0px; border-bottom: 0px"> Code:
<if condition="$post['signature']"> <!-- sig --> <div> __________________<br /> $post[signature] </div> <!-- / sig --> </if> Now find: Code:
<!-- / edit note --> </if> </td> </tr> Code:
<tr> <td class="alt1" valign="bottom" style="border-right: $stylevar[cellspacing]px solid $stylevar[tborder_bgcolor]"> <if condition="$post['signature']"> <!-- sig --> <hr size="1" style="color:$stylevar[tborder_bgcolor]" /> <div valign="bottom"> $post[signature] </div> <!-- / sig --> </if> </td> </tr> Show Your Support
|
Comments |
#62
|
|||
|
|||
Perfect on 3.6.7 Two thumbs up, this is even better now... Thanks for this SecTa.
|
#63
|
|||
|
|||
This worked perfectly for me. The OP's way screwed some things up, but yours is perfect. thanks for posting this
|
#64
|
||||
|
||||
these changes also did nothing for me
|
#65
|
|||
|
|||
For those who are using postbit_legacy templates that do not include this line:
PHP Code:
You need to find this: PHP Code:
PHP Code:
PHP Code:
PHP Code:
PHP Code:
This is working on 3.6.7 To see it working on my site here is a link to a post http://www.anticheatinc.com/forums/s...02&postcount=1 |
#66
|
||||
|
||||
[edit: fixed, sorry]
|
#67
|
|||
|
|||
still haven't found a way to fix this line
i've already read the thread thx for the mod.. |
#68
|
||||
|
||||
Thanks, it's a great look
|
#69
|
|||
|
|||
remove this line
Code:
<hr size="1" style="color:$stylevar[tborder_bgcolor]" /> |
#70
|
|||
|
|||
Quote:
That will remove the line that is directly above the signature which you can barely see in the image. The line he is referring to is due to the rowspan="2" addition and the skin that he is running. Tmod |
#71
|
|||
|
|||
Anyone that has a aftermarket skin may have the problem with that line that is directly under the post and then a big space and then the signature.
Well I hated the line there and played with some code until I got it looking the way I wanted it to. So here is my edition of this mod. Go to the postbit_legacy template for the skin you are working with. Find This: Code:
<td class="alt2" width="175"> Code:
<if condition="$post['signature']"> <td class="alt2" width="175" rowspan="2"> <else /> <td class="alt2" width="175"> </if> Code:
$template_hook[postbit_signature_start] <if condition="$post['signature']"> <!-- sig --> <div> __________________<br /> $post[signature] </div> <!-- / sig --> </if> $template_hook[postbit_signature_end] Code:
$template_hook[postbit_signature_start] <if condition="$post['signature']"> <tr height="1"> <td class="alt1" valign="bottom"> <!-- sig --> <div valign="bottom"> $post[signature] </div> <!-- / sig --> </td> </tr> </if> $template_hook[postbit_signature_end] Tmod |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|