Quote:
Originally Posted by Wordplay
i used vbadvanced and made it a module, that is all. no editing the plugin itself required. somebody explain to me how to take out the TIME though and just not have that shown at all.
|
in chatbox_lite.php, change this
Code:
$time = vbdate($vbulletin->options['timeformat'], $shout['dateline']);
// if shout wasn't made today, show day
if (vbdate('jny', $shout['dateline']) != vbdate('jny')) {
$time = vbdate($vbulletin->options['dateformat'], $shout['dateline'], true) . ' ' . $time;
}
echo '['.$time.'] <em>'.$shout['username'].$del.'</em>: '.$parsed.'<br />'
for this
Code:
echo '<em>'.$shout['username'].$del.'</em>: '.$parsed.'<br />';