Version: 1.10, by Atakan KOC
Developer Last Online: Mar 2023
Category: Show Thread Enhancements -
Version: 3.7.0
Rating:
Released: 05-05-2008
Last Update: 05-05-2008
Installs: 447
Uses Plugins Template Edits Auto-Templates
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'
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.
Thanks!
Installed and nominated! But.... needs improvments .
1. Phrase all templates
2. Forum options:
a) enable FPOAP: yes\no
b) default template: Postbit Normal\Postbit Article\Postbit Legacy\Postbit Flipped
c) enable user change default template: yes\no
d) enable usergroup permisions override forum first post default template settings
3. User group permisions:
a) enable user change default first post template: yes\no
1. Is it possible that only defined usergroups are allowed to change the postbit type?
2. It would be nice to be able to set the postbit default tpye for every single forum. Can this be done?
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.
Thanks!
Installed and nominated! But.... needs improvments .
1. Phrase all templates
2. Forum options:
a) enable FPOAP: yes\no
b) default template: Postbit Normal\Postbit Article\Postbit Legacy\Postbit Flipped
c) enable user change default template: yes\no
3. User group otions:
a) enable user change default first post template: yes\no
Please!
Quote:
Originally Posted by jluerken
Hi,
1. Is it possible that only defined usergroups are allowed to change the postbit type?
2. It would be nice to be able to set the postbit default tpye for every single forum. Can this be done?
i installed this version, it make first post chief but still using old postbit_lagency (old threads) but in new threads its working fine, how to solve this problem?