Hey Everyone,
I'm looking for a "Staff Post Tracker" or "Dev Tracker", but
not one like
this mod.
I've been searching around for awhile, and I'm trying to find one thats not going to cost a big chunk of change. I'm sure theres some other people looking for one as well.
I've found these 2 simple modifications to search.php, but didn't really have much success with them as they were designed for vB 3.6
PHP Code:
if ($vbulletin->GPC['searchuser'] == 'devtracker') { $userids = '1,5,10,43'; }
Or:
PHP Code:
if ( $vbulletin->GPC['searchuser'] == 'devtracker' )
{
$aDevGroups = Array ( 1, 2, 3 );
$q = 'SELECT posts, userid, username FROM `' . TABLE_PREFIX . 'user` where usergroupid IN ( ' . implode ( ',', $aDevGroups ) . ') ';
foreach ( $aDevGroups as $nDevGroup )
$q .= ' OR concat( membergroupids,"," ) LIKE "%' . $nDevGroup . ',%"';
}
else
I've been hoping for a plugin, template modification, or full out mod that can basically perform the same thing as a search.php search, but simply displaying the posts of a usergroup.
And I'm sure it can't be too hard, I just can't seem to wrap my head around it for some reason