Go Back   vb.org Archive > vBulletin Modifications > vBulletin 4.x Modifications > vBulletin 4.x Add-ons
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
Separate Sticky and Normal Threads Details »»
Separate Sticky and Normal Threads
Version: 4.01, by Atakan KOC Atakan KOC is offline
Developer Last Online: Mar 2023 Show Printable Version Email this Page

Category: Forum Display Enhancements - Version: 4.0.0 Beta 5 Rating:
Released: 11-14-2009 Last Update: 12-12-2009 Installs: 2665
Uses Plugins Template Edits Auto-Templates
Re-useable Code Translations  
No support by the author.

Go to your admin cp, then:
Plugin System -> Manage Products -> [Add/Import Product] -> Select 'product-eparate.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.4 Initial Version.
1.0.5 fix bug.
2.0.0 vbulletin 3.7.0 release
3.0.0 vbulletin 3.8.0 release
4.0.0 vbulletin 4.0.0 release
4.0.1 style change (Thanks BBR-APBT)

Download Now

File Type: xml product-eparate.xml (4.1 KB, 9674 views)

Screenshots

File Type: png Main Forum_1260698621594.png (30.3 KB, 0 views)

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #232  
Old 02-25-2011, 10:14 PM
addamroy addamroy is offline
 
Join Date: Sep 2010
Posts: 352
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

If this helps anybody...You can easily change the text on 'normal threads' and 'sticky threads'

To do this, open up the .xml file with notepad ++ or whatever code editor you prefer, and go to line 71 and 72.

In the CDATA brackets, simply either replace the 'normal threads' and 'sticky threads' text with you preference, or delete the text to leave it blank. If you already installed it, just upload it again and allow overwrite.
Reply With Quote
  #233  
Old 04-06-2011, 11:20 PM
BF777 BF777 is offline
 
Join Date: Jan 2007
Posts: 95
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by BBR-APBT View Post
I made changes to the templates to make it look more like it did in the older versions.
I figured I would share my templates.

First off here is the screen of what mine looks like.



Now here is the code.

Look for the following FORUMDISPLAY templates:

FORUMDISPLAY_Separate
Code:
<li class="threadbit" id="cat1">
<div class="icon0 nonsticky">
<div class="inner">
<p><b>&nbsp; $vbphrase[delim_normal] &nbsp;</b></p>
</div>
</div>
</li>
FORUMDISPLAY_Separate2
Code:
<li class="threadbit" id="cat1">
<div class="icon0 nonsticky">
<div class="inner">
<p><b>&nbsp; $vbphrase[delim_sticky] &nbsp;</b></p>
</div>
</div>
</li>
Strange. I didn't have to update this. The code was already like this.
Reply With Quote
  #234  
Old 04-09-2011, 08:05 PM
Randomm Randomm is offline
 
Join Date: Jul 2010
Posts: 125
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

how do you remove the words Normal Threads and Sticky Threads?
Reply With Quote
  #235  
Old 04-10-2011, 08:25 AM
Jontycat Jontycat is offline
 
Join Date: Apr 2011
Posts: 1
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Great work. Thanks.
Reply With Quote
  #236  
Old 04-16-2011, 01:43 PM
sybakaos sybakaos is offline
 
Join Date: Mar 2006
Posts: 78
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Since vB v4.1 you can no longer select all threads in a forum, using the inline mod tools, if there's a sticky present in that particular forum.
Reply With Quote
  #237  
Old 04-16-2011, 03:03 PM
sybakaos sybakaos is offline
 
Join Date: Mar 2006
Posts: 78
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by sybakaos View Post
Since vB v4.1 you can no longer select all threads in a forum, using the inline mod tools, if there's a sticky present in that particular forum.
Easy fix.

In both FORUMDISPLAY_Separate and FORUMDISPLAY_Separate2 template, replace <li and </li with <div and </div
Reply With Quote
  #238  
Old 04-18-2011, 10:56 AM
KaneR KaneR is offline
 
Join Date: Apr 2010
Posts: 7
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Randomm View Post
how do you remove the words Normal Threads and Sticky Threads?

Style Manager > Edit Templates > Forum Display Templates > FORUMDISPLAY_Seperate

Find this code:
Code:
&nbsp; $vbphrase[delim_normal] &nbsp;
Replace with:
Code:
&nbsp;



Style Manager > Edit Templates > Forum Display Templates > FORUMDISPLAY_Seperate2

Find this code:
Code:
&nbsp; $vbphrase[delim_sticky] &nbsp;
Replace with:
Code:
&nbsp;
Reply With Quote
  #239  
Old 04-19-2011, 01:33 AM
Randomm Randomm is offline
 
Join Date: Jul 2010
Posts: 125
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by KaneR View Post
Style Manager > Edit Templates > Forum Display Templates > FORUMDISPLAY_Seperate

Find this code:
Code:
&nbsp; $vbphrase[delim_normal] &nbsp;
Replace with:
Code:
&nbsp;



Style Manager > Edit Templates > Forum Display Templates > FORUMDISPLAY_Seperate2

Find this code:
Code:
&nbsp; $vbphrase[delim_sticky] &nbsp;
Replace with:
Code:
&nbsp;

You are the man sir!
Reply With Quote
  #240  
Old 04-22-2011, 04:06 PM
Speedy1505 Speedy1505 is offline
 
Join Date: Feb 2007
Posts: 37
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

this Plugin dosnt work

is this active, create JavaScript this Error
HTML Code:
this.checkbox is null
an JS dosnt work anything ...

the Inlinemoderation dosnt work and many more ...

i must deactivte this Plugin ...

can this fixed ?????
Reply With Quote
  #241  
Old 05-08-2011, 04:49 PM
UKCE_Hitman UKCE_Hitman is offline
 
Join Date: Jan 2008
Posts: 47
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

thx installed
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 08:07 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.10190 seconds
  • Memory Usage 2,351KB
  • Queries Executed 26 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (10)bbcode_code
  • (1)bbcode_html
  • (4)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (4)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (11)post_thanks_box
  • (10)post_thanks_box_bit
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (1)post_thanks_postbit
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (2)postbit_attachment
  • (11)postbit_onlinestatus
  • (11)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • fetch_musername
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • post_thanks_function_fetch_thanks_bit_start
  • post_thanks_function_show_thanks_date_start
  • post_thanks_function_show_thanks_date_end
  • post_thanks_function_fetch_thanks_bit_end
  • post_thanks_function_fetch_post_thanks_template_start
  • post_thanks_function_fetch_post_thanks_template_end
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_attachment
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete