If you want only selected forums affected try:
This step only addresses which forums are affected when creating a new thread. It does not affect the forums listed in the Jump Menu.
Quote:
Originally Posted by gigaenvy
Thanks for this coolness!
Is there a way to only enable this for certain forums and then to only select specified forums from the dropdown?
|
Go into Plugin Manager -->
Cyb - Prevent Newbies from Posting to Wrong Forum - MN (newthread_start)
Find:
Code:
if (($vbulletin->options['cyb_preventnewthread_pcneeded'] > $vbulletin->userinfo['posts']) AND is_member_of($vbulletin->userinfo, split(',', $vbulletin->options['cyb_preventnewthread_affectedgroups'])) AND ($vbulletin->GPC['fcon']!=1) AND ($_REQUEST['do']!='postthread'))
and Replace it with:
Code:
if (($vbulletin->options['cyb_preventnewthread_pcneeded'] > $vbulletin->userinfo['posts']) AND is_member_of($vbulletin->userinfo, split(',', $vbulletin->options['cyb_preventnewthread_affectedgroups'])) AND ($vbulletin->GPC['fcon']!=1) AND ($_REQUEST['do']!='postthread') AND in_array($forumid, array(x,y,z)))
Where "
x,y,z" are replace it with your Forum ID's that you want affected. To add more forums just separate the ID's with a comma. See if that works.