Log in

View Full Version : Excluding a forum from a plugin


Wizardjv
06-07-2009, 10:08 PM
Ok so I have a plugin that I like and it works well, but I want it to exclude a certain forum.

The hook location is postbit_display_complete

I have tried various if statements, but none of them seem to work. Does anyone know how I can achieve this? I would appreciate any help

Lynne
06-07-2009, 11:32 PM
Use something like this at that hook location:
if ($this->forum['forumid'] == 'x')
{
whatever
}