Originalmente inviato da
programmerhouse
Ok, comunque sto usando il tema default : ecco qui il codice :
Codice PHP:
// Show the [home] button.
echo ($current_action=='home' || $context['browser']['is_ie4']) ? '<td class="maintab_active_' . $first . '"> </td>' : '' , '
<td valign="top" class="maintab_' , $current_action == 'home' ? 'active_back' : 'back' , '">
<a href="', $scripturl, '">' , $txt[103] , '</a>
</td>' , $current_action == 'home' ? '<td class="maintab_active_' . $last . '"> </td>' : '';
Ok, regolati con la posizione (se lo vuoi subito dopo home lo metti dopo questo altrimenti cerca più giù le altre voci e regolati di conseguenza) e inserisci questo:
Codice PHP:
// Show the [chat] button.
echo ($current_action=='chat' || $context['browser']['is_ie4']) ? '<td class="maintab_active_' . $first . '"> </td>' : '' , '
<td valign="top" class="maintab_' , $current_action == 'chat' ? 'active_back' : 'back' , '">
<a href="', $scripturl, '?action=chat">Chat</a>
</td>' , $current_action == 'chat' ? '<td class="maintab_active_' . $last . '"> </td>' : '';
Ricordati di aggiungere "chat" anche in
Codice PHP:
if (in_array($context['current_action']
(che troverai sempre in questo file)