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

Reply
 
Thread Tools
Chief First Post - Every Page [Forum Based] Details »»
Chief First Post - Every Page [Forum Based]
Version: 1.00, by Atakan KOC Atakan KOC is offline
Developer Last Online: Mar 2023 Show Printable Version Email this Page

Category: Show Thread Enhancements - Version: 3.8.x Rating:
Released: 10-27-2008 Last Update: Never Installs: 266
Uses Plugins Template Edits Auto-Templates
 
No support by the author.

Chief First Post - Every Page [Forum Based]
With this mod, you can convert the view of the thread in to 4 different type. Additionally you can change the view as you edit click the edit button. The 1st message of the thread will stay at top all the time even while you are checking other messages related to this subject.


Thread Type
Postbit New Comment Type
Postbit Flipped
Postbit Normal
Postbit Legacy


install

Go to your admin cp, then:
Plugin System -> Manage Products -> [Add/Import Product] -> Select 'product-atabbda.xml' from your computer then press 'Import'

Modifications Info

Plugin : 7
Phrases : 8
Template : 3
Setting : 0

Versions:
v1.0 - 12 Octaber 2008
-First release

With this mod, you can convert the view of the thread in to 4 different type. Additionally you can change the view as you edit click the edit button. The 1st message of the thread will stay at top all the time even while you are checking other messages related to this subject.

Download Now

File Type: xml product-atabbda.xml (42.3 KB, 1614 views)

Screenshots

File Type: jpg newsrc1.jpg (60.0 KB, 0 views)
File Type: gif newsrc2.gif (24.1 KB, 0 views)
File Type: jpg newsrc3.jpg (59.0 KB, 0 views)
File Type: jpg newsrc4.jpg (55.2 KB, 0 views)
File Type: jpg newsrc5.jpg (55.5 KB, 0 views)

Show Your Support

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

Comments
  #72  
Old 12-05-2009, 02:34 AM
mykkal's Avatar
mykkal mykkal is offline
 
Join Date: May 2007
Location: Atlanta, GA
Posts: 485
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hey there, i'm able to "chief" every post on the first page but i'm only able to use one template. i'm not exactly sure which postbit template is being used...Doesn't matter which one I select as the default for the forum.

Does anyone know how to fix this?
Reply With Quote
  #73  
Old 12-13-2009, 06:08 AM
marshal_ramdev marshal_ramdev is offline
 
Join Date: Mar 2009
Location: Ludhiana
Posts: 192
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

thanks ...
Reply With Quote
  #74  
Old 12-22-2009, 01:27 PM
taffy056 taffy056 is offline
 
Join Date: Sep 2004
Location: In a house in Wales ;)
Posts: 254
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by LightInClouds View Post
Can this mod be transferred to vB 4.0.
Just tried it on vb4.0 and got a database error, think it needs to be ported over
Reply With Quote
  #75  
Old 12-23-2009, 12:00 AM
ZexTasy ZexTasy is offline
 
Join Date: Jan 2008
Posts: 34
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Check the plugin for the hook "showthread_query"

Current Code:
Code:
    $ids .= ",$thread[firstpostid]";
    $postids = "post.postid IN (0" . $ids . ")";
Should be changed to:
Code:
    $ids[] = $thread[firstpostid];
    $postids = "post.postid IN (0" . implode(',', $ids) . ")";
I use Legacy Postbit, I haven't tested anything else, but for me it works now in vbulletin 4.0.

- ZexTasy
Reply With Quote
  #76  
Old 01-01-2010, 02:59 PM
iyama iyama is offline
 
Join Date: Sep 2008
Posts: 327
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thnx ZexTasy: works here on vb4 gold
Reply With Quote
  #77  
Old 01-06-2010, 03:18 PM
arena's Avatar
arena arena is offline
 
Join Date: Oct 2006
Posts: 159
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by ZexTasy View Post
Check the plugin for the hook "showthread_query"

Current Code:
Code:
    $ids .= ",$thread[firstpostid]";
    $postids = "post.postid IN (0" . $ids . ")";
Should be changed to:
Code:
    $ids[] = $thread[firstpostid];
    $postids = "post.postid IN (0" . implode(',', $ids) . ")";
I use Legacy Postbit, I haven't tested anything else, but for me it works now in vbulletin 4.0.

- ZexTasy
thank you my friend I am posbit works
Reply With Quote
  #78  
Old 01-08-2010, 06:10 AM
laztrix laztrix is offline
 
Join Date: Dec 2008
Posts: 122
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Sorry guys but I couldn't find the settings page in Vbulletin Options.
Where do I get to the setting page?
Reply With Quote
  #79  
Old 01-08-2010, 02:43 PM
Taurus1's Avatar
Taurus1 Taurus1 is offline
 
Join Date: Dec 2009
Posts: 648
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by laztrix View Post
Sorry guys but I couldn't find the settings page in Vbulletin Options.
Where do I get to the setting page?
Man this is awesome!! Works 100% on 3.8.4 P2

And to your question, there is no setting in your vb Options. Open your Forums & Moderators tab on the left in your ACP. Select Forum Manager......select the forum you want to enable this on.....scroll right to the bottom....Chief First Post ....and make your selection....Save...

Done!!
Reply With Quote
  #80  
Old 01-10-2010, 09:35 AM
LuckyNeo's Avatar
LuckyNeo LuckyNeo is offline
 
Join Date: Dec 2009
Location: Kiev, Ukraine
Posts: 42
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Please! Make this hack on vB4!!! Please!
Reply With Quote
  #81  
Old 01-15-2010, 09:47 AM
iyama iyama is offline
 
Join Date: Sep 2008
Posts: 327
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

See #77. Its work on vb4.01
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 06:41 AM.


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.07782 seconds
  • Memory Usage 2,344KB
  • 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
  • (4)bbcode_code
  • (3)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
  • (11)post_thanks_box
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (6)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
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • 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