The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
[OzzModz] Separate Sticky Threads Collapsible Details »» | |||||||||||||||||||||||||||
[OzzModz] Separate Sticky Threads Collapsible
Developer Last Online: Dec 2021
Another mod brought to you by,
Separate Sticky Threads will allow administrators to separate the sticky threads from the normal threads on forumdisplay. Separate Sticky Threads Collapsible, is May's Mod of the Month winner! I would like to thank everyone who nominated, and voted to help it win. Settings for this mod can be found in, ACP / Settings / Options / Ozzy: Separate Sticky Threads Settings. Complete Feature List -------------------------------------------------------------------------------------------
If you like this mod please hit the button to the right ----> Please remember to click the, button to the right if you installed the mod ----> What does 'Marking As Installed' do ? * It helps you to stay on top of updates - members who have installed modifications will be notified whenever new updates are available. * For security issues - vbulletin.org will contact all members who have installed a modification whenever a security issue is brought to their attention. * Marking a modification as installed also helps me know how many people are using my work, giving me extra incentive to provide more features and new modifications. I appreciate the support! ------------------------------------------------------------------------------------------- Changelog: v1.1.0
Additions:
Sorted a issue where some sites would see a strange error on the top of some pages. v1.5.2 Added support for the Modification Version Checker mod from DragonByte Tech. ------------------------------------------------------------------------------------------- Incompatible with the following mod, Thread Links / Redirect Thread to URL First screenshot is what forum display will look like, the second one is of the settings. Installation instructions are in the readme file in the zip. ------------------------------------------------------------------------------------------- Contributions Received (members who clicked on, and followed through with the Support Developer button) bazookajoe Show Your Support
|
8 благодарности(ей) от: | ||
ggrimes620, Hostboard, Insta-Gator, Judith2, mykkal, RichieBoy67, Taurus1, tbworld |
Comments |
#132
|
||||
|
||||
There is settings to remove them.
|
#133
|
|||
|
|||
The only settings I saw removed the one UNDER that area, or, both at the top (but just need one removed)...
The one that needs to be removed is the one ABOVE the word "Sticky". See screenshot below: |
#134
|
||||
|
||||
Ahh, I see, you want the stock one removed, no there is no option for that, but you could edit the FORUMHOME template, and find this bit of code:
Code:
<div class="threadlisthead table"> <div> <span class="threadinfo"> <span class="threadtitle"> <a href="{vb:link forum, {vb:raw foruminfo}, {vb:raw pageinfo_title}}" rel="nofollow">{vb:rawphrase title}{vb:raw sortarrow.title}</a> / <a href="{vb:link forum, {vb:raw foruminfo}, {vb:raw pageinfo_postusername}}" rel="nofollow">{vb:rawphrase thread_starter}{vb:raw sortarrow.postusername}</a> </span> </span> <vb:if condition="$show['search_engine']"> <span class="threadstats td">{vb:rawphrase replies} {vb:raw sortarrow.replycount} / {vb:rawphrase views}</span> <span class="threadlastpost td">{vb:rawphrase last_post_by}{vb:raw sortarrow.lastpost}</span> <vb:else /> <span class="threadstats td"><a href="{vb:link forum, {vb:raw foruminfo}, {vb:raw pageinfo_replycount}}" rel="nofollow">{vb:rawphrase replies}{vb:raw sortarrow.replycount}</a> / <a href="{vb:link forum, {vb:raw foruminfo}, {vb:raw pageinfo_views}}" rel="nofollow">{vb:rawphrase views}{vb:raw sortarrow.views}</a></span> <span class="threadlastpost td"><a href="{vb:link forum, {vb:raw foruminfo}, {vb:raw pageinfo_flastpost}}" rel="nofollow">{vb:rawphrase last_post_by}{vb:raw sortarrow.lastpost}</a></span> <vb:if condition="$show['inlinemod']"><span class="threadimodimod td"></span></vb:if> </vb:if> </div> </div> Code:
<vb:comment><div class="threadlisthead table"> <div> <span class="threadinfo"> <span class="threadtitle"> <a href="{vb:link forum, {vb:raw foruminfo}, {vb:raw pageinfo_title}}" rel="nofollow">{vb:rawphrase title}{vb:raw sortarrow.title}</a> / <a href="{vb:link forum, {vb:raw foruminfo}, {vb:raw pageinfo_postusername}}" rel="nofollow">{vb:rawphrase thread_starter}{vb:raw sortarrow.postusername}</a> </span> </span> <vb:if condition="$show['search_engine']"> <span class="threadstats td">{vb:rawphrase replies} {vb:raw sortarrow.replycount} / {vb:rawphrase views}</span> <span class="threadlastpost td">{vb:rawphrase last_post_by}{vb:raw sortarrow.lastpost}</span> <vb:else /> <span class="threadstats td"><a href="{vb:link forum, {vb:raw foruminfo}, {vb:raw pageinfo_replycount}}" rel="nofollow">{vb:rawphrase replies}{vb:raw sortarrow.replycount}</a> / <a href="{vb:link forum, {vb:raw foruminfo}, {vb:raw pageinfo_views}}" rel="nofollow">{vb:rawphrase views}{vb:raw sortarrow.views}</a></span> <span class="threadlastpost td"><a href="{vb:link forum, {vb:raw foruminfo}, {vb:raw pageinfo_flastpost}}" rel="nofollow">{vb:rawphrase last_post_by}{vb:raw sortarrow.lastpost}</a></span> <vb:if condition="$show['inlinemod']"><span class="threadimodimod td"></span></vb:if> </vb:if> </div> </div></vb:comment> |
#135
|
|||
|
|||
Not all forums have stickies, so wouldn't there need to be a conditional?
|
#136
|
||||
|
||||
Hmm, good point, ok replace the code with this:
Code:
<vb:if condition="!$show['stickies']"> <div class="threadlisthead table"> <div> <span class="threadinfo"> <span class="threadtitle"> <a href="{vb:link forum, {vb:raw foruminfo}, {vb:raw pageinfo_title}}" rel="nofollow">{vb:rawphrase title}{vb:raw sortarrow.title}</a> / <a href="{vb:link forum, {vb:raw foruminfo}, {vb:raw pageinfo_postusername}}" rel="nofollow">{vb:rawphrase thread_starter}{vb:raw sortarrow.postusername}</a> </span> </span> <vb:if condition="$show['search_engine']"> <span class="threadstats td">{vb:rawphrase replies} {vb:raw sortarrow.replycount} / {vb:rawphrase views}</span> <span class="threadlastpost td">{vb:rawphrase last_post_by}{vb:raw sortarrow.lastpost}</span> <vb:else /> <span class="threadstats td"><a href="{vb:link forum, {vb:raw foruminfo}, {vb:raw pageinfo_replycount}}" rel="nofollow">{vb:rawphrase replies}{vb:raw sortarrow.replycount}</a> / <a href="{vb:link forum, {vb:raw foruminfo}, {vb:raw pageinfo_views}}" rel="nofollow">{vb:rawphrase views}{vb:raw sortarrow.views}</a></span> <span class="threadlastpost td"><a href="{vb:link forum, {vb:raw foruminfo}, {vb:raw pageinfo_flastpost}}" rel="nofollow">{vb:rawphrase last_post_by}{vb:raw sortarrow.lastpost}</a></span> <vb:if condition="$show['inlinemod']"><span class="threadimodimod td"></span></vb:if> </vb:if> </div> </div> </vb:if> |
#137
|
|||
|
|||
very nice Mod Thanks Dear
1 Question How to Changer Color Name (Sticky Threads ) Name (Normal Threads) |
#138
|
||||
|
||||
Edit the Stylevars found in the group Ozzy47Mods
|
#139
|
||||
|
||||
A ha, so you did settle for the oZZmodZ label...
Here we are, shaping the future in our own individual ways... Wise choice... You work well..... |
#140
|
||||
|
||||
Yeah I thought about it and decided to switch, plus made the logo.
|
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|