PDA

View Full Version : Showing signature once per-thread page


hpmustangs
05-13-2010, 11:01 AM
I need help and or someone to write some code for Showing signature once pre-thread page for each member ..

I search vbulletin.org and NO one has done this b4 .. wow .. someone came close with
the Hide sig and avatar idea .. but I am not looking to do that ..

Just looking to show sigs only once per-thread page for each member ..

Thanks..

BTW the first person to write this keeps my idea :D

BTW I am running Vb 3.8.5 but will run 4.0x if someone can write this..

Boofo
05-13-2010, 11:20 AM
Sorry, but this has been done since way back in the vb 3.5 days. For vbulletin 4 do the following:

In the postbit AND/OR postbit_legacy template

Find:

<vb:if condition="$post['signature']">

REPLACE it with:

<vb:if condition="$post['signature'] AND !$vboptions['shownsigs'][$post[userid]] AND $vboptions['shownsigs'][$post[userid]] = true">

hpmustangs
05-13-2010, 11:26 AM
Thank you .. I found the same code on some other site .. I got linked to ..

Thanks again however.. :up:

Sorry, but this has been done since way back in the vb 3.5 days. For vbulletin 4 do the following:

In the postbit AND/OR postbit_legacy template

Find:

<vb:if condition="$post['signature']">

REPLACE it with:

<vb:if condition="$post['signature'] AND !$vboptions['shownsigs'][$post[userid]] AND $vboptions['shownsigs'][$post[userid]] = true">

slimgamer
05-17-2010, 08:39 PM
thanks, still works!