The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
|||
|
|||
How To Separate Sticky and Normal Threads
This is for v3.0.x: http://www.vbulletin.com/forum/showthread.php?t=101615
Is still valid, but not working really well (column problems, inline mod..). Now with 3.5.0? |
#2
|
||||
|
||||
Quote:
HTML Code:
<tr><td class="thead" colspan="<if condition="$show['threadicons']">7<else />6</if>"> </td></tr> |
#3
|
|||
|
|||
But normal users don't see that column. Other conditional should be added probably.
|
#4
|
|||
|
|||
I think it simple...
I did it in two step: 1. Create Phrases: Code:
Type: Global Varname: delim_sticky Text: Sticked threads Type: Global Varname: delim_normal Text: Normal threads HTML Code:
<if condition="$show['threads']"> <!-- show threads --> <if condition="$show['stickies']"> $threadbits_sticky HTML Code:
<if condition="$show['threads']"> <!-- show threads --> <if condition="$show['stickies']"> <tr> <td class="thead" width="100%" colspan=7><strong>$vbphrase[delim_sticky]</strong></td> </tr> $threadbits_sticky <if condition="$threadbits"> <tr> <td class="thead" width="100%" colspan=7><strong>$vbphrase[delim_normal]</strong></td> </tr> </if> |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|