Este tuto no lo inicie yo, pero a causa de que el autor dio una serie de codigos muy mal escritos y un tuto incompleto me di a la tarea terminarlo y distribuir creditos.
Ejemplo:
http://www.xpresionzone.net/foro/index.php en "Último Mensaje" salen los prefijos entre el posticon y el titulo del tema
Archivos a Editar:
/inc/functions_forumlist.php
Abranlo con el
Notepad++ y
Busquen:
global $fcache, $moderatorcache, $forumpermissions, $theme, $mybb, $templates, $bgcolor, $collapsed, $lang, $showdepth, $plugins, $parser, $forum_viewers;
remplacen por:
global $db, $fcache, $moderatorcache, $forumpermissions, $theme, $mybb, $templates, $bgcolor, $collapsed, $lang, $showdepth, $plugins, $parser, $forum_viewers;
Busquen:
elseif($hideinfo != true)
{
remplacen por:
elseif($hideinfo != true)
{
/************** Prefijos en el Index ************ */
// @Autor: Mattia
// @Web: www.methack.it/forum/
// @Creditos: Solstice
// Obtener detalles de la base de datos.
$thread = get_thread($lastpost_data['lastposttid']);
// Obtener el prefijo si hay uno.
$thread['threadprefix'] = '';
$thread['displayprefix'] = '';
if($thread['prefix'] != 0)
{
$query = $db->simple_select('threadprefixes', 'prefix, displaystyle', "pid='{$thread['prefix']}'");
$threadprefix = $db->fetch_array($query);
$thread['threadprefix'] = $threadprefix['prefix'].' ';
$thread['displayprefix'] = $threadprefix['displaystyle'].' ';
}
/************** Fin de la modificacion ***************** */
Busquen:
$lastpost_subject = $full_lastpost_subject = $parser->parse_badwords($lastpost_data['lastpostsubject']);
remplacen por:
$lastpost_subject = $full_lastpost_subject = $thread['threadprefix'] . $parser->parse_badwords($lastpost_data['lastpostsubject']);
En sus plantillas de "Caja del Foro" -> forumbit_depth1_forum_lastpost y forumbit_depth2_forum_lastpost
Coloquen
{$thread['displayprefix']}
antes de
<a href="{$lastpost_link}" style="white-space:nowrap"
Saludos