Quote:
Originally Posted by Lynne
It's real easy to write your own plug-in for this.
- Create your own first post template - "postbit_myown"
- Create a plugin using hook "postbit_display_complete"
Code:
if ($this->forum['forumid']==xx AND $post['postid']==$this->thread['firstpostid'])
{
$this->templatename = 'postbit_myown';
}
edit: Whoops, that isn't for every page, just for the first post, but you can modify the conditional yourself for that.
|
That wouldn't make it every page and wouldn't allow the exclusion of a select forum. Thanks a ton though.