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

Reply
 
Thread Tools
Chief First Post - Every Page - 3.6.x Details »»
Chief First Post - Every Page - 3.6.x
Version: 1.01, by Atakan KOC Atakan KOC is offline
Developer Last Online: Mar 2023 Show Printable Version Email this Page

Category: Show Thread Enhancements - Version: 3.6.8 Rating:
Released: 08-23-2007 Last Update: 08-25-2007 Installs: 339
Uses Plugins Template Edits
 
No support by the author.

Chief First Post - Every Page
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 Article
Postbit Flipped
Postbit Normal
Postbit Legacy


install

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

Modifications Info

Plugin : 12
Phrases : 3
Template : 3
Setting : 0

Versions:
v1.0 - 24 August 2007
-First release

v1.0.1 - 26 August 2007
-Rating Phrase fixed

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.

Show Your Support

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

Comments
  #172  
Old 01-09-2008, 06:48 PM
Aeolian Aeolian is offline
 
Join Date: Apr 2004
Posts: 114
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by rapidphim View Post
can this awesome mod be upgraded for upcoming vb 3.7? my board will be meaningless without this mod.
i have tested the mod in vb 3.7 b3, and it works fine.
Reply With Quote
  #173  
Old 01-09-2008, 06:49 PM
Aeolian Aeolian is offline
 
Join Date: Apr 2004
Posts: 114
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Aeolian View Post
in postbit article option, "Rating: ()" option comes in every topic irrespective of the fact that the section does not allow rating a thread..
how to resolve :s
thanks in advance
BUMP
Reply With Quote
  #174  
Old 01-14-2008, 09:21 PM
hdrmut hdrmut is offline
 
Join Date: Aug 2005
Posts: 32
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Not work with 3.6.8


MySQL Error : Mixing of GROUP columns (MIN(),MAX(),COUNT(),...) with no GROUP columns is illegal if there is no GROUP BY clause
Error Number : 1140
Date : Tuesday, January 15th 2008 @ 05:21:01 AM
Script : http://www.hdrmut.net/vb/showthread.php?p=1052942784
Referrer :
IP Address : 212.71.37.72
Username : support
Classname : vb_database
Reply With Quote
  #175  
Old 01-16-2008, 11:19 AM
safakuygur's Avatar
safakuygur safakuygur is offline
 
Join Date: Sep 2007
Posts: 193
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

installed..
Thanks Atakan KOÇ
Reply With Quote
  #176  
Old 01-17-2008, 05:18 PM
voter's Avatar
voter voter is offline
 
Join Date: Dec 2006
Posts: 192
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

For "Rating: ()" option comes in every topic irrespective of the fact that the section does not allow rating a thread..

Find in postbit_articles

Quote:
<div><if condition="$thread['rating']">
<strong>$vbphrase[rating]:</strong>
<img class="inlineimg" src="$stylevar[imgdir_rating]/rating_$thread[rating].gif" alt="" />
<span class="smallfont">
<phrase 1="$thread[votenum]" 2="$thread[voteavg]">$vbphrase[cp_x_votes_y_average]</phrase>
</span>
<else />
<img class="inlineimg" src="$stylevar[imgdir_rating]/rating_0.gif" alt="" />
<span class="smallfont">
(<phrase 1="$thread[votenum]" 2="$thread[voteavg]">$vbphrase[mxe_x_votes_y_average]</phrase>)
</span>
</if></div>
Replace it with
Code:
<if condition="$show['threadratings'] AND $show['threadrating']">
<div>
<if condition="$thread['rating']">
<strong>$vbphrase[rating]:</strong> 
<img class="inlineimg" src="$stylevar[imgdir_rating]/rating_$thread[rating].gif" alt="" />
<span class="smallfont">
<phrase 1="$thread[votenum]" 2="$thread[voteavg]">$vbphrase[cp_x_votes_y_average]</phrase>
</span>
<else />
<img class="inlineimg" src="$stylevar[imgdir_rating]/rating_0.gif" alt="" />
<span class="smallfont">
(<phrase 1="$thread[votenum]" 2="$thread[voteavg]">$vbphrase[mxe_x_votes_y_average]</phrase>)
</span>
</if>
</div>
</if>
For advanced users and may be for further release from Atakan I add an if condition - in red, don'T forgot the to close the if.
Reply With Quote
  #177  
Old 01-17-2008, 05:33 PM
voter's Avatar
voter voter is offline
 
Join Date: Dec 2006
Posts: 192
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

It would be greate enhancement, if one will have a option in userCP, such that every user could deside, do he want a view with chief post or not.

Something similar to display modes, that every user could decide in which mode he would like to display threads.
Reply With Quote
  #178  
Old 01-17-2008, 05:57 PM
voter's Avatar
voter voter is offline
 
Join Date: Dec 2006
Posts: 192
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by demgel View Post
Well, TO ME is annoying that everything is in posbit_article mode by default, so... to choose the default posbit, in the XML search:

default:
$this->templatename = 'postbit_articles';

So, change postbit_articles for the default mode you like.

These are the four options you can use:

postbit_legacy
postbit_articles
postbit_flipped
postbit (this is the normal mode)

So, then you import the product (reeplacing the old one by this one).

Saludos desde chile! (My english really sucks, I now)

PD: Don't know if this was posted already on this thread.
PD2: Atakan KOC, YOU ARE THE MAN!!! I've been waiting for this since march!!
Check the first page of thread https://vborg.vbsupport.ru/showpost....5&postcount=20 it is more safe, than hardcoding the XML file.
Reply With Quote
  #179  
Old 01-18-2008, 11:28 AM
voter's Avatar
voter voter is offline
 
Join Date: Dec 2006
Posts: 192
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Any idea how to switch this off in one style and let it be in another?
I have many styles and think to allow users, who don't like this way of showing the threads, choose just another style.
Reply With Quote
  #180  
Old 01-20-2008, 01:54 PM
amirlol amirlol is offline
 
Join Date: Oct 2005
Location: FUNEX.IR
Posts: 26
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thank you very much
Reply With Quote
  #181  
Old 02-05-2008, 04:44 PM
WreckRman2 WreckRman2 is offline
 
Join Date: Dec 2001
Location: Indianapolis, IN
Posts: 158
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I like this... the only thing that would make this better would be the ability to merge posts into the first one. Example... I have a forum where a guy builds a kit airplane. Something that takes many days to get done. So if one could click add to post of something and create a new post it would create a timeline within the first post and also show attachments based on the day they were uploaded instead of all at the bottom. Kinda like a blog in a way.
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 12:54 AM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.06357 seconds
  • Memory Usage 2,316KB
  • Queries Executed 25 (?)
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
  • (1)bbcode_code
  • (4)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (11)post_thanks_box
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (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_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete