Quote:
Originally Posted by RichieBoy67
Would like to be able to have specific forums not display in activity stream. That would be a great feature.
|
New plugin at hook threaddata_presave:
Code:
if ($this->info['forum']['forumid'] == '4'){
$this->set_info('skip_activitystream', true);
}
New plugin at hook postdata_presave
Code:
if ($this->info['forum']['forumid'] == '4'){
$this->set_info('skip_activitystream', true);
}