First of all, I'd like to thank you all for this great site. I've been a member over at vbulletintemplates for a while but joined over here for the coding tips/tricks.
Anyhow, here's my problem. I found
this thread containing the following code which enables me to show the original post date/time in my forums. (
http://forums.stuffz.net).
Code:
if ($thread['dateline'])
{
$thread['createdate'] = " @ ".vbdate($vboptions['dateformat'], $thread['dateline'], true);
$thread['createtime'] = vbdate($vboptions['timeformat'], $thread['dateline']);
}
Currently, this code in the functions_forumdisplay.php displays like
this. I would prefer my results to look exactly like
this board. Can anyone point me in the right direction?
Also, how can I get the time/date to show on my
new posts page? Would I have to edit one of the search templates?