Find the following line in usercp.php ;
PHP Code:
$reputation['timeline'] = vbdate($vboptions['timeformat'], $reputation['dateline']);
Then add this above it ;
PHP Code:
// Hide users prior to certain Date.
require_once('./includes/functions_misc.php');
if ($reputation['dateline'] < vbmktime(0, 0, 0, 11, 17, 2004))
{
$reputation['whoadded'] = '0';
$reputation['username'] = '*hidden*';
}
Set the last three values in vbmktime to the date you want - the above is set for today (Nov 17th 2004). Also note - I only have vB 3.0.3 so this is the only version I have tested this on.