antes de que instales plugin puedes hacer esto:
abre el archivo ./inc/functions_forumlist.php
Busca esta linea:
$lastpost_profilelink = build_profile_link($lastpost_data['lastposter'], $lastpost_data['lastposteruid']);
y Reemplazala por esto:
global $db;
$lastposter_query = $db->query("SELECT username, usergroup, displaygroup FROM ".TABLE_PREFIX."users WHERE uid='".$lastpost_data['lastposteruid']."'");
$lastposter_format = $db->fetch_array($lastposter_query);
$lastposter = format_name($lastposter_format['username'], $lastposter_format['usergroup'], $lastposter_format['displaygroup']);
$lastpost_profilelink = build_profile_link($lastposter, $lastpost_data['lastposteruid']);
y listo lo tendras asi como en mi foro xD
Saludos!!