This can be done but you need
two plugins and a template edit.
First go to Admin CP -> Plugin Manager -> Add a New Plugin
Product: vbulletin
Hook Location: threadbit_display
Title: make threadbit dates
Execution Order: 5
code:
PHP Code:
$thread['fdate'] = vbdate($vbulletin->options['dateformat'], $thread['dateline']);
$thread['ftime'] = vbdate($vbulletin->options['timeformat'], $thread['dateline']);
$thread['postdatex'] = $thread['fdate'] .' '. $thread['ftime'];
Set Active to YES
Save The Plugin
Now Add Another Plugin:
Product: vbulletin
Hook Location: search_results_threadbit
Title: make search dates
Execution Order: 5
PHP Code:
$thread['fdate'] = vbdate($vbulletin->options['dateformat'], $thread['dateline']);
$thread['ftime'] = vbdate($vbulletin->options['timeformat'], $thread['dateline']);
$thread['postdatex'] = $thread['fdate'] .' '. $thread['ftime'];
Set Active to YES
Save The Plugin
Now edit your
threadbit template-
I suggest the following but you can put the date anywhere you want.
Find the code:
Code:
<span style="cursor:pointer" onclick="window.open('member.php?$session[sessionurl]u=$thread[postuserid]', '_self')">$thread[postusername]</span>
Right after it add:
Code:
- $thread[postdatex]
You can thank Lynne for the plugin code, it was from her mod
here.
You'll get something like the attached image (without the "ZZ" I forgot to delete that from my code...)