Default Signature Hack

  • Thread starter Thread starter J.Black
  • Start date Start date
J

J.Black

Guest
what does it?: this hack shows you in User Control Panel, Memberinfo and in Showthread a selected Default Signature

Thanks To SpeedFreak
 
Installation: AdminCP => Plugin System => Click Manage Products => Click [Add/Import Product] => Under Import Product => Select the "product-default_signature" file => Press Import..

Show your support click "Mark As Installed", nominate for MOTM, rate this modification, and/or donate.

3 template edits

now open MEMBERINFO template and search this code

HTML:
<td class="alt1" title="$vbphrase[signature]">$userinfo[signature]</td>
</tr>
</table>

after add this code

HTML:
<else />
$default_signature

click save and open postbit_legacy template and search this code

HTML:
<if condition="$post['signature']">
<!-- sig -->
<div>
__________________<br />
$post[signature]
</div>
<!-- / sig -->
</if>

replace with this code


HTML:
<if condition="$post['signature']">
<!-- sig -->
<div>
__________________<br />
$post[signature]
</div>
<!-- / sig -->
<else />
$default_signature
</if>

click save and open USERCP template and search this code

HTML:
<!-- ############## SUBSCRIBED THREADS ##############  -->

and add abow this code

HTML:
<if condition="$show['signature']">
$usercpsig
<else />
$default_signature
</if>

click save.. you are done

yoursig.jpg

usercp.jpg

settings.jpg

postbitlegacy.jpg

memberinfo.jpg
 
Back
Top