Version: 1.0.3, by Atakan KOC
Developer Last Online: Mar 2023
Version: 3.5.8
Rating:
Released: 03-18-2006
Last Update: 05-23-2006
Installs: 822
Uses Plugins
No support by the author.
install
Go to your admin cp, then:
Plugin System -> Manage Products -> [Add/Import Product] -> Select 'product-Separate.xml' from your computer then press 'Import'
Separate Sticky and Normal Threads Setting
Go to your admin cp, then:
vBulletin Options -> Forum Display Options (forumdisplay) ->
Separate Sticky and Normal Threads (Yes/No)
1.0.0 Initial Version. 1.0.1 Separate 2 Added. 1.0.2 Mini Fix Problem. 1.0.3 Separate 1 & Separate 2 COMBINED .
Show Your Support
This modification may not be copied, reproduced or published elsewhere without author's permission.
I've installed it and it works perfect.
I' got only one problem with an other style. In this style the user that wrote the sticky-post is not black like at the normal post.
In the picture you see what I mean if you don't understand my bad english ;-)
I hope someone can help me to change the color into black.
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
Hi Daz,
Thanks for your code: I like it very much that you can use words on the lines. I have another question regarding splitting threads in the threadoverview :
I use sticky threads also for displaying ads on my forum. They are normal sticky threads, and have an advertisement as content. What I would like to know is this : how can I split those advertisements-threads from the regular sticky threads into a separate area, just like you did with sticky threads and regular threads in your picture?
I would like to achieve something like this:
-----------------------------------------------------------------------
Sticky Threads
[ ] [ ] Sticky: Spamming On This Board !!!
-------- Noonster
-----------------------------------------------------------------------
Advertisement Threads
[ ] [ ] Advertisement: New Madonna Single Out Now
-------- Advertisement
[ ] [ ] Advertisement: New Madonna Album Out Now
-------- Advertisement
-----------------------------------------------------------------------
Normal Threads
[ ] [ ] Update: New Style Created
-------- Noonster
-----------------------------------------------------------------------
Is this possible to achieve? Preferable with a Plugin.