Version: 1.01, by Atakan KOC
Developer Last Online: Mar 2023
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.
kinda like vb.org as in the first post will show on all pages after the first page. So the original post that started the thread will be seen first on page 6, 7, 8, .. etc ...
I notice the first post also changes to article by default?
Installed of course
But ... i understand show first post in every page ... ok.
However if you have examples to flipped postbit ... I appreciate.
Tks Atakan !
Joao Barroca
aka beduino
Is there a way to have it use the basic postbit by default cause it uses the articles one and it's not very pretty on my forums and having to change the postbit thread by thread is kind of a boring task
2. In Chief Post - Postbit Display Complete Plugin
Default
Code:
if ($this->forum['chiefpost']==1 AND $post['postid']==$this->thread['firstpostid'])
{
switch ($this->thread['ttype'])
{
case 1:
$this->templatename = 'postbit_articles';
break;
case 2:
$this->templatename = 'postbit_flipped';
break;
case 3:
$this->templatename = 'postbit';
break;
case 4:
$this->templatename = 'postbit_legacy';
break;
default:
$this->templatename = 'postbit_articles';
break;
}
}
Change to
Code:
if ($this->forum['chiefpost']==1 AND $post['postid']==$this->thread['firstpostid'])
{
switch ($this->thread['ttype'])
{
case 1:
$this->templatename = 'postbit_legacy';
break;
case 2:
$this->templatename = 'postbit_flipped';
break;
case 3:
$this->templatename = 'postbit';
break;
case 4:
$this->templatename = 'postbit_articles';
break;
default:
$this->templatename = 'postbit_legacy';
break;
}
}
And i added <if condition="is_member_of($bbuserinfo, 6)"> at the begining In the postbit_select template and </if> at the end so only Admins can use this.