Quote:
Originally Posted by Bulent Tekcan
Hello Logician
Is it possible this announcment special forum ? For example only ForumID 4,5,8 or what ever.
Thanks
|
Do a condition based on the variable $forumid if you're using the hack to make the thing display on all vB pages, so something along the lines of...
Code:
[[($forumid == 4)]]Your message here...[[/($forumid==4)]]
Where your forum's id is 4 obviously...
Or, if you wanted to do more than one forum...
Code:
[[(in_array($forumid, array(5,6,7))]]Your message here...[[/(in_array($forumid, array(5,6,7))]]
Where array(5,6,7) would refer to forums with id's 5,6, and 7. Or whatever you prefer there. The form is basically a comma separated list with no spaces for in_array.
I've not tested those exactly, but my understanding of where that hook is located is that you should have access to the $forumid variable from global.php, which should be what you'd need to do it.
-RD