Signature only on first post
Signature only on first post VB3.6x
This will cause each user's signature to be shown only on their first post on each page vs. on every post during a thread listing.
Originally Posted by
Thug Hi i was wondering if theres a hack where peoples sigs only show once per page?
In the postbit or postbit_legacy template,
Find :
Code:
PHP Code:
<if condition="$post['signature']">
And replace it with this one:
Code:
PHP Code:
<if condition="$post['signature'] AND !$vboptions['shownsigs'][$post[userid]] AND $vboptions['shownsigs'][$post[userid]] = true">
There can be only one ! ~ The Highlander