Quote:
Originally Posted by Smoothie
Could someone with a bit more knowledge than me please explain where this goes??
|
1. Find & edit the file includes/functions_forumdisplay.php;
2. Insert this:
PHP Code:
if ($thread['dateline'])
{
$thread['threaddate'] = vbdate($vbulletin->options['dateformat'], $thread['dateline'], 1);
$thread['threadtime'] = vbdate($vbulletin->options['timeformat'], $thread['dateline']);
}
at line 183
2. Go to template
threadbit and insert there new code like this one:
HTML Code:
<span class="smallfont">$thread[threaddate]</span>
<span class="time">$thread[threadtime]</span>
Reload forumdisplay.php of any forum and you will see thread creation date there.
Ciao
Tom