#5 in my to-do list
In the meantime, the plugin is easy to edit.
Might LOOK tough, but it's not.
Edit the Product XML file before installation (or edit the plugin itself after, whichever).
Add something like this in the VIEWING plugin somewhere:
PHP Code:
if ($vbulletin->userinfo['usergroupid'] == X OR $vbulletin->userinfo['usergroupid'] == Y)
{
$show['blunts_whodl_width'] = 500;
$show['blunts_whodl_names'] = true;
$show['blunts_whodl_dates'] = true;
$show['blunts_whodl_dates_to_just_poster'] = true;
$show['blunts_whodl_ips'] = true;
$show['blunts_whodl_altips'] = true;
}
Notice everything I just cut n pasted is the the same except for the IF statement itself.
Only thing you have to be careful about is nesting the IF'S.
With my one big nest, the first condition that succeeds will exit the "nest".
And you don't need to use my "one nest" either.
You can have a seperate conditional at the bottom!!
Example you could add a conditional at the end and if that condition is met it will override any previous condition which might/might not have been met.
If that didn't make sense, say so.