Absolutely I could:
PHP Code:
<?php
if($vbulletin->options['data_onoff']){
if(THIS_SCRIPT == 'showthread' AND $counter == 1 AND $fetchtype == 'post' AND $post['visible'] == 1)
{
$result = $db->query("SELECT data FROM thread WHERE threadid = ".$threadid);
$fetch = $db->fetch_array($result);
$find = '<span class="date">';
$replace = '<span class="date"> - '.$fetch['data'] ;
$vbulletin->templatecache['postbit_legacy'] = str_replace($find, $replace, $vbulletin->templatecache['postbit_legacy']);
}
}
?>
That's it and the hook is double checked: showthread_postbit_create.
Honestly I don't know what the display mode is