Add a plugin and edit a template as follows...
- threadbit_process hook:
Code:
$thread['threadbit_start_date'] = vbdate($vbulletin->options['dateformat'], $thread['dateline'], true);
$thread['threadbit_start_time'] = vbdate($vbulletin->options['timeformat'], $thread['dateline']);
- threadbit template:
Code:
<if condition="$show['guestuser']">
$thread[postusername]
<else />
<span style="cursor:pointer" onclick="window.open('member.php?$session[sessionurl]u=$thread[postuserid]', '_self')">$thread[postusername]</span>
</if>
<if condition="$thread[threadbit_start_date]">
($vbphrase[start_date]: $thread[threadbit_start_date]<if condition="$thread[threadbit_start_time] AND !$show[detailedtime]"> <span class="time">$thread[threadbit_start_time]</span></if>)
</if>