16Jan/100
[phpBB] Remover "Sub-Fóruns"

Abrir:
/styles/prosilver/template/forumlist_body.html
Encontrar e remover:
<strong>{forumrow.L_SUBFORUM_STR}</strong>
14Jan/100
[phpBB] Sub-fóruns em colunas


Abrir:
/includes/functions_display.php
Encontrar:
foreach ($subforums_list as $subforum)
{
$s_subforums_list[] = '<a class="subforum ' . (($subforum['unread']) ? 'unread' : 'read') . '" title="' . (($subforum['unread']) ? $user->lang['NEW_POSTS'] : $user->lang['NO_NEW_POSTS']) . '" href="' . $subforum['link'] . '">' . $subforum['name'] . '</a>';
}
$s_subforums_list = (string) implode(', ', $s_subforums_list);
{
$s_subforums_list[] = '<a class="subforum ' . (($subforum['unread']) ? 'unread' : 'read') . '" title="' . (($subforum['unread']) ? $user->lang['NEW_POSTS'] : $user->lang['NO_NEW_POSTS']) . '" href="' . $subforum['link'] . '">' . $subforum['name'] . '</a>';
}
$s_subforums_list = (string) implode(', ', $s_subforums_list);
Substituir por:
foreach ($subforums_list as $subforum)
{
$s_subforums_list[] = '
<a class="subforum ' . (($subforum['unread']) ? 'unread' : 'read') . '" href="' . $subforum['link'] . '">' . $subforum['name'] . '</a>';
}
$s_subforums_list = (string) implode('', $s_subforums_list);
{
$s_subforums_list[] = '
<a class="subforum ' . (($subforum['unread']) ? 'unread' : 'read') . '" href="' . $subforum['link'] . '">' . $subforum['name'] . '</a>';
}
$s_subforums_list = (string) implode('', $s_subforums_list);
12Jan/100
[phpBB] Remover "• Índice" do título


Abrir:
/styles/prosilver/template/overall_header.html
Encontrar:
{SITENAME} • <!-- IF S_IN_MCP -->{L_MCP} • <!-- ELSEIF S_IN_UCP -->{L_UCP} • <!-- ENDIF -->{PAGE_TITLE}
Substituir por:
{SITENAME} <!-- IF S_IN_MCP -->{L_MCP} <!-- ELSEIF S_IN_UCP -->{L_UCP} <!-- ENDIF -->{PAGE_TITLE}
Abrir:
/index.php
Encontrar:
page_header($user->lang['INDEX']);
Substituir por:
page_header();