Hi, i found some sort of solution
You can modify the code in a way, that only moderators and above see the "new thread button" - the register user won't
You can do that by modifying the
.../com_fireboard/template/default/showcat.php file
around lines 197 and 300 you will find the line
| Code: |
if ((($fbConfig['pubwrite'] == 0 && $my_id != 0) || $fbConfig['pubwrite'] == 1) && ($topicLock == 0 || ($topicLock == 1 && $is_moderator)))
|
You can comment it out by putting the "//" at the beginning of it.
Then underneath copy-paste this
Final result will look something like this
| Code: |
// if ((($fbConfig['pubwrite'] == 0 && $my_id != 0) || $fbConfig['pubwrite'] == 1) && ($topicLock == 0 || ($topicLock == 1 && $is_moderator)))
if ($is_moderator)
{
|
This code tells fireboard to show the button only if user is moderator. Don't forget to copy-paste this on both places (line 197 and line 300)
Hope it helps
Best Regards