
05-20-2006, 07:58 PM
|
|
|
Join Date: Feb 2006
Posts: 102
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by Noonster
On my site I used my own code it makes it so it shows words on the lines that seperate to make it look nicer...
Code here
Code:
1. Create Phrases:
Type: Global
Varname: delim_sticky
Text: Sticky Threads
Type: Global
Varname: delim_normal
Text: Normal Threads
2. Find this in FORUMDISPLAY:
<if condition="$show['threads']">
<!-- show threads -->
<if condition="$show['stickies']">
$threadbits_sticky
and replace with this:
<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>
Screenshot
Maybe you could intregate that into your hack so others can enjoy it as a plugin?? I was going to just post the code up in the other section as dont know how to create a plugin however you can use it if you wish
Daz
|
NICE NICE NICE NICE
|