christon26
11-28-2009, 10:00 PM
This is my very first mod post so be gentle lol
I re-arranged how the signatures display on my forum as I don't like the default....and would like to give back to the community by sharing :)
**Please save your original template code before modifying**
In Postbit Templates
For postbit_legacy:
Find:
<td class="alt2" width="175" style="border: $stylevar[cellspacing]px solid $stylevar[tborder_bgcolor]; border-top: 0px; border-bottom: 0px">
Replace with:
<td class="alt2" width="175" style="border: $stylevar[cellspacing]px solid $stylevar[tborder_bgcolor]; border-top: 0px; border-bottom: 0px" rowspan="2">
Find:
$template_hook[postbit_signature_start]
$ad_location[ad_showthread_firstpost_sig]
<if condition="$post['signature']">
<!-- sig -->
<div>
__________________<br />
$post[signature]
</div>
<!-- / sig -->
</if>
$template_hook[postbit_signature_end]
<if condition="$show['postedited']">
<!-- edit note -->
<div class="smallfont">
<hr size="1" style="color:$stylevar[tborder_bgcolor]; background-color:$stylevar[tborder_bgcolor]" />
<em>
<if condition="$show['postedithistory']">
<phrase 1="$post[edit_username]" 2="$post[edit_date]" 3="$post[edit_time]" 4="posthistory.php?$session[sessionurl]p=$post[postid]">$vbphrase[last_edited_link_by_x_on_y_at_z_postid]</phrase>
<else />
<phrase 1="$post[edit_username]" 2="$post[edit_date]" 3="$post[edit_time]">$vbphrase[last_edited_by_x_on_y_at_z]</phrase>
</if>
<if condition="$post['edit_reason']">
$vbphrase[reason]: $post[edit_reason]
</if>
</em>
</div>
<!-- / edit note -->
</if>
</td>
</tr>
Replace with:
<if condition="$show['postedited']">
<!-- edit note -->
<div class="smallfont">
<hr size="1" style="color:$stylevar[tborder_bgcolor]; background-color:$stylevar[tborder_bgcolor]" />
<em>
<if condition="$show['postedithistory']">
<phrase 1="$post[edit_username]" 2="$post[edit_date]" 3="$post[edit_time]" 4="posthistory.php?$session[sessionurl]p=$post[postid]">$vbphrase[last_edited_link_by_x_on_y_at_z_postid]</phrase>
<else />
<phrase 1="$post[edit_username]" 2="$post[edit_date]" 3="$post[edit_time]">$vbphrase[last_edited_by_x_on_y_at_z]</phrase>
</if>
<if condition="$post['edit_reason']">
$vbphrase[reason]: $post[edit_reason]
</if>
</em>
</div>
<!-- / edit note -->
</if>
</td>
</tr>
<tr>
<td align="center" valign="bottom">
$template_hook[postbit_signature_start]
$ad_location[ad_showthread_firstpost_sig]
<if condition="$post['signature']"><br />
<!-- sig -->
<fieldset class="signature">
<legend>Signature</legend>
$post[signature]
</fieldset>
<!-- / sig -->
</if>
$template_hook[postbit_signature_end]
</td>
</tr>
Save and enjoy
For postbit:
Find:
$template_hook[postbit_signature_start]
$ad_location[ad_showthread_firstpost_sig]
<if condition="$post['signature']">
<!-- sig -->
<div>
__________________<br />
$post[signature]
</div>
<!-- / sig -->
</if>
$template_hook[postbit_signature_end]
Replace with:
$template_hook[postbit_signature_start]
$ad_location[ad_showthread_firstpost_sig]
<if condition="$post['signature']"><br />
<!-- sig -->
<fieldset class="signature">
<legend>Signature</legend>
$post[signature]
</fieldset>
<!-- / sig -->
</if>
$template_hook[postbit_signature_end]
Save and enjoy
The code contains the word signature which can be changed to your language if different, just find and edit:
<legend>Signature</legend>
Lastly, add some css in the Additional CSS Definitions in Style Manager to style the signature fieldset how you like
.signature {
border: solid 1px #bdbfdd;
margin: 5px;
padding: 10px;
color: #000000;
background: #ffffff;
}
For post previewing, New Posting Templates >> newpost_preview
Find:
<div>__________________<br />
$post[signature]</div>
Replace with:
<fieldset class="signature">
<legend>Signature</legend>
$post[signature]
</fieldset>
Hopefully I have done this right and some can make nice use of it :D
***Revision 4th December: Removed unnecessary table cell code from postbit replacement plus border style from table cell in postbit_legacy
***Revision 4th December: Added code to change for newpost_preview template
***Revision 3rd January:
Thanx to ChopSuey (https://vborg.vbsupport.ru/member.php?u=336959) and Warlord (https://vborg.vbsupport.ru/member.php?u=4514) for this little change if you want to give your members a link to edit their signature in the legend title:
Change:
<legend>Signature</legend>
to:
<legend>Signature <if condition="$bbuserinfo[userid] == $post[userid] "> - <a href="/profile.php?do=editsignature">Edit</a></if></legend>
I re-arranged how the signatures display on my forum as I don't like the default....and would like to give back to the community by sharing :)
**Please save your original template code before modifying**
In Postbit Templates
For postbit_legacy:
Find:
<td class="alt2" width="175" style="border: $stylevar[cellspacing]px solid $stylevar[tborder_bgcolor]; border-top: 0px; border-bottom: 0px">
Replace with:
<td class="alt2" width="175" style="border: $stylevar[cellspacing]px solid $stylevar[tborder_bgcolor]; border-top: 0px; border-bottom: 0px" rowspan="2">
Find:
$template_hook[postbit_signature_start]
$ad_location[ad_showthread_firstpost_sig]
<if condition="$post['signature']">
<!-- sig -->
<div>
__________________<br />
$post[signature]
</div>
<!-- / sig -->
</if>
$template_hook[postbit_signature_end]
<if condition="$show['postedited']">
<!-- edit note -->
<div class="smallfont">
<hr size="1" style="color:$stylevar[tborder_bgcolor]; background-color:$stylevar[tborder_bgcolor]" />
<em>
<if condition="$show['postedithistory']">
<phrase 1="$post[edit_username]" 2="$post[edit_date]" 3="$post[edit_time]" 4="posthistory.php?$session[sessionurl]p=$post[postid]">$vbphrase[last_edited_link_by_x_on_y_at_z_postid]</phrase>
<else />
<phrase 1="$post[edit_username]" 2="$post[edit_date]" 3="$post[edit_time]">$vbphrase[last_edited_by_x_on_y_at_z]</phrase>
</if>
<if condition="$post['edit_reason']">
$vbphrase[reason]: $post[edit_reason]
</if>
</em>
</div>
<!-- / edit note -->
</if>
</td>
</tr>
Replace with:
<if condition="$show['postedited']">
<!-- edit note -->
<div class="smallfont">
<hr size="1" style="color:$stylevar[tborder_bgcolor]; background-color:$stylevar[tborder_bgcolor]" />
<em>
<if condition="$show['postedithistory']">
<phrase 1="$post[edit_username]" 2="$post[edit_date]" 3="$post[edit_time]" 4="posthistory.php?$session[sessionurl]p=$post[postid]">$vbphrase[last_edited_link_by_x_on_y_at_z_postid]</phrase>
<else />
<phrase 1="$post[edit_username]" 2="$post[edit_date]" 3="$post[edit_time]">$vbphrase[last_edited_by_x_on_y_at_z]</phrase>
</if>
<if condition="$post['edit_reason']">
$vbphrase[reason]: $post[edit_reason]
</if>
</em>
</div>
<!-- / edit note -->
</if>
</td>
</tr>
<tr>
<td align="center" valign="bottom">
$template_hook[postbit_signature_start]
$ad_location[ad_showthread_firstpost_sig]
<if condition="$post['signature']"><br />
<!-- sig -->
<fieldset class="signature">
<legend>Signature</legend>
$post[signature]
</fieldset>
<!-- / sig -->
</if>
$template_hook[postbit_signature_end]
</td>
</tr>
Save and enjoy
For postbit:
Find:
$template_hook[postbit_signature_start]
$ad_location[ad_showthread_firstpost_sig]
<if condition="$post['signature']">
<!-- sig -->
<div>
__________________<br />
$post[signature]
</div>
<!-- / sig -->
</if>
$template_hook[postbit_signature_end]
Replace with:
$template_hook[postbit_signature_start]
$ad_location[ad_showthread_firstpost_sig]
<if condition="$post['signature']"><br />
<!-- sig -->
<fieldset class="signature">
<legend>Signature</legend>
$post[signature]
</fieldset>
<!-- / sig -->
</if>
$template_hook[postbit_signature_end]
Save and enjoy
The code contains the word signature which can be changed to your language if different, just find and edit:
<legend>Signature</legend>
Lastly, add some css in the Additional CSS Definitions in Style Manager to style the signature fieldset how you like
.signature {
border: solid 1px #bdbfdd;
margin: 5px;
padding: 10px;
color: #000000;
background: #ffffff;
}
For post previewing, New Posting Templates >> newpost_preview
Find:
<div>__________________<br />
$post[signature]</div>
Replace with:
<fieldset class="signature">
<legend>Signature</legend>
$post[signature]
</fieldset>
Hopefully I have done this right and some can make nice use of it :D
***Revision 4th December: Removed unnecessary table cell code from postbit replacement plus border style from table cell in postbit_legacy
***Revision 4th December: Added code to change for newpost_preview template
***Revision 3rd January:
Thanx to ChopSuey (https://vborg.vbsupport.ru/member.php?u=336959) and Warlord (https://vborg.vbsupport.ru/member.php?u=4514) for this little change if you want to give your members a link to edit their signature in the legend title:
Change:
<legend>Signature</legend>
to:
<legend>Signature <if condition="$bbuserinfo[userid] == $post[userid] "> - <a href="/profile.php?do=editsignature">Edit</a></if></legend>