Pero no podria hacerse manualmente.
Me descargue los plugins y los abrir con el Worpad. y estoy viendo que cosa es lo que reemplaza el pluggin.
Y he visto que en hay una parte que decie
function posticonsonindexvbb_activate()
{
require_once MYBB_ROOT."/inc/adminfunctions_templates.php";
find_replace_templatesets("forumbit_depth2_forum", "#".preg_quote("<td class=\"{\$bgcolor}\" valign=\"top\" align=\"right\" style=\"white-space: nowrap\">{\$lastpost}</td>")."#i", "<td class=\"{\$bgcolor}\" valign=\"top\" align=\"left\" style=\"white-space: nowrap\">{\$lastpost}</td>");
find_replace_templatesets("forumbit_depth2_forum_lastpost", "#".preg_quote("<a href=\"{\$lastpost_link}\" title=\"{\$full_lastpost_subject}\"><strong>{\$lastpost_subject}</strong></a>")."#i", "{\$forum['lastpost_icon']} <a href=\"{\$lastpost_link}\" title=\"{\$full_lastpost_subject}\"><strong>{\$lastpost_subject}</strong></a>");
find_replace_templatesets("forumbit_depth2_forum_lastpost", "#<br(.*?)</span>#ism", "<br />{\$lang->by} <strong>{\$lastpost_profilelink}</strong><br />{\$lastpost_date} {\$lastpost_time}</span>");
}
function posticonsonindexvbb_deactivate()
{
require_once MYBB_ROOT."/inc/adminfunctions_templates.php";
find_replace_templatesets("forumbit_depth2_forum", "#".preg_quote("<td class=\"{\$bgcolor}\" valign=\"top\" align=\"left\" style=\"white-space: nowrap\">{\$lastpost}</td>")."#i", "<td class=\"{\$bgcolor}\" valign=\"top\" align=\"right\" style=\"white-space: nowrap\">{\$lastpost}</td>", 0);
find_replace_templatesets("forumbit_depth2_forum_lastpost", "#".preg_quote("{\$forum['lastpost_icon']} <a href=\"{\$lastpost_link}\" title=\"{\$full_lastpost_subject}\"><strong>{\$lastpost_subject}</strong></a>")."#i", "<a href=\"{\$lastpost_link}\" title=\"{\$full_lastpost_subject}\"><strong>{\$lastpost_subject}</strong></a>", 0);
find_replace_templatesets("forumbit_depth2_forum_lastpost", "#<br(.*?)</span>#ism", "<br />{\$lastpost_date} {\$lastpost_time}<br />{\$lang->by} {\$lastpost_profilelink}</span>", 0);
}
function posticonsonindexvbb_start(&$forum) {
global $cache;
// GET THREAD ICON
$lastpost_icon = "";
$thread = get_thread($forum['lastposttid']);
$icon_cache = $cache->read("posticons");
if($thread['icon'] > 0 && $icon_cache[$thread['icon']])
{
$icon = $icon_cache[$thread['icon']];
$forum['lastpost_icon'] = "<img src=\"{$icon['path']}\" alt=\"{$icon['name']}\" /> ";
}
}
?>
Me podria ayudar que cosa es lo que reemplaza el pluggin .. La parte de Active o de Start?