No 2.0RC5
./Sources/
ManageSettings.php encontrar esse código ...
// Who's online?
array('check', 'who_enabled'),
array('int', 'lastActive'),
Por favor, adicione este código ...
// Active Members In Topic.
'',
array('check', 'activeMemberEnable'),
array('check', 'activeMemberCountenable'),
array('text', 'activeMemberColor'),
array('text', 'activeMemberTextColor'),
array('select','activeMemberSort', array(&$txt['active_desc'], &$txt['active_asc'])),
array('select','activeMemberName', array(&$txt['active_mname'], &$txt['active_rname'])),
./Themes/default/
Display.template.php encontrar esse código ...
// Show the topic information - icon, subject, etc.
echo '
<div id="forumposts" class="tborder">
<h3 class="catbg3">
<img src="', $settings['images_url'], '/topic/', $context['class'], '.gif" align="bottom" alt="" />
<span>', $txt['author'], '</span>
<span id="top_subject">', $txt['topic'], ': ', $context['subject'], ' (', $txt['read'], ' ', $context['num_views'], ' ', $txt['times'], ')</span>
</h3>';
substituí-lo ... Por este código
// Show the topic information - icon, subject, etc.
echo '
<div id="forumposts" class="tborder">
<h3 class="catbg3">
<img src="', $settings['images_url'], '/topic/', $context['class'], '.gif" align="bottom" alt="" />';
if (!empty($modSettings['activeMemberEnable']) && AllowedTo('activeMember_view'))
{
// Do you wish to hide the active member section, the user can!
echo '<a href="#" onclick="shrinkHeaderAM(!current_header_am); return false;"><img id="upshrink_am" src="', $settings['images_url'], '/', empty($options['collapse_header_am']) ? 'collapse.gif' : 'expand.gif', '" alt="*" title="', $txt['am_description'], '" style="margin-right: 2ex;" /></a>';
}
echo'<span>', $txt['author'], '</span>';
// Show the topic information - icon, subject, etc.
echo '<span id="top_subject">', $txt['topic'], ': ', $context['subject'], ' (', $txt['read'], ' ', $context['num_views'], ' ', $txt['times'], ')</span></h3>';
// Is the active member enabled?
if (!empty($modSettings['activeMemberEnable']) && AllowedTo('activeMember_view'))
{
echo'<div id="upshrinkHeaderAM"', empty($options['collapse_header_am']) ? '' : ' style="display: none;"', '><div id="activemembers" style="background-color:'.$modSettings['activeMemberColor'].'; color:'.$modSettings['activeMemberTextColor'].'">',$txt['activeMembers_title'],'<br />', $context['members_posted'], '</div></div>';
}
./Themes/default/css/
forum.cssColocar no
./Themes/default/css/
index.cssAdicionar
#activemembers
{
padding: 5px;
font-size: 10px;
}
./Themes/default/languages/
ManageSettings.portuguese_pt.phpencontrar esse código ...
$txt['karmaLabel'] = 'Título do Karma';
$txt['karmaApplaudLabel'] = 'Aumentar Karma';
$txt['karmaSmiteLabel'] = 'Diminuir Karma';
Por favor, adicione este código ...depois
$txt['activeMemberEnable'] = 'Activar os membros no tópico';
$txt['activeMemberCountenable'] = 'Activar a contagem de membros activos no poste do tópico';
$txt['activeMemberColor'] = 'Cor de fundo da linha membro activo';
$txt['activeMemberTextColor'] = 'Cor do texto membro activo';
$txt['activeMemberSort'] = 'Ordenar por postes mais alta ou mais baixa mensagens no tópico';
$txt['activeMemberName'] = 'Classificar por nome de membro ou o nome real';
$txt['active_desc'] = 'Ordenar descendente';
$txt['active_asc'] = 'Ordenar em Crescente';
$txt['active_mname'] = 'Nome de Membro';
$txt['active_rname'] = 'Nome real';
[info]Para activar tem que ir .... Admin » Centro de Administração » Funcionalidades e Opções »Geral[/info]
[okay]Testado a funcionar 100%[/okay]