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.
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';
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.
Ok, what am I missing? I installed as instructed with the plugin manager, and nothing changed with how the threads were handled? I can start a new thread as usual, with nothing added like stated in the first post...am I suppose to modify all the templates manually?
Only Postbit article and Postbit flipped works. By default I'm using postbit legacy and when I choose Postbit Normal it doesn't change to Normal postbit.