Log in

View Full Version : Allow shouting in thread titles of specific forums


Alfa1
02-06-2009, 05:10 PM
I have prevent shouting enabled. But I would like to disable this function for thread titles of specific forums.

How can I do this?

Lynne
02-06-2009, 05:13 PM
Just write a plugin to disable $vbulletin->options['stopshouting'] for those specific forums. Maybe the fetch_foruminfo hook location.

Alfa1
02-06-2009, 05:28 PM
So what conditional should I add to disable $vbulletin->options['stopshouting'] for a forum array?

--------------- Added 1233948906 at 1233948906 ---------------

Would
<if condition="in_array($foruminfo['forumid'], array(1 , 2,3))">!$vbulletin->options['stopshouting']</if>
Work?

Lynne
02-06-2009, 05:56 PM
No. You need to use php in plugins. Something more like;

if(in_array($forumid,array(x,y)))
{
$vbulletin->options['stopshouting'] = '0';
}

Alfa1
02-06-2009, 07:24 PM
That works. Thanks!