Quote:
Originally Posted by ctbo
Please I really wanted to be able to make it forum specific which I could have done with the above Mod in combination with another.
|
I don't know that specific code, but I can't imagine it would be hard to modify the plugin to do different words for different forums. Have you tried to just add some conditions into the plugin?
PHP Code:
if ($forumid == x){
$word = ...;
$link = ...;
} else if ($forumid == y){
$word = ...;
$link = ...;
}
$this->post['message'] = ...;