Quote:
Originally Posted by mark350
Thanks for the information... I foudn the field to change max number of characters, but I don't understand how to set it for a specific user group... not sure what you meant "The variable is $vbulletin->options['postmaxchars']"
|
If you hover over the title in vboptions, you get told what the variable name is and $vbulletin->options['postmaxchars'] is the name of the variable that is used when they set the maximum number of characters per post.
When you write your plugin, you would use a conditional for the usergroup (something like this, it depends what hook you use):
PHP Code:
if (in_array($post['usergroupid'], array(x,y))) {
// set postmaxchars differently for those in usergroupid x or y
$vbulletin->options['postmaxchars']='40000';
}
This is NOT TESTED AT ALL!!!! I can't play around on my test site at the moment, so I can't figure this out through trial and error myself, you will have to play with it.