Ovako ide na default temi:
1. Otvori index.template.php
2. Pronadji ovaj deo koda:
if (in_array($context['current_action'], array('search', 'admin', 'calendar', 'profile', 'mlist', 'register', 'login', 'help', 'pm')))
3. Posle 'pm' - stavi zarez, napiši 'rules'.
4. Pronadji ovaj deo koda:
// Otherwise, they might want to [logout]...
if ($context['user']['is_logged'])
echo ($current_action == 'logout' || $context['browser']['is_ie4']) ? '<td class="maintab_active_' . $first . '"> </td>' : '' , '
<td valign="top" class="maintab_' , $current_action == 'logout' ? 'active_back' : 'back' , '">
<a href="', $scripturl, '?action=logout;sesc=', $context['session_id'], '">' , $txt[108] , '</a>
</td>' , $current_action == 'logout' ? '<td class="maintab_active_' . $last . '"> </td>' : '';
5.Ispod dodaj sledeće:
// Show the [rules] button.
echo ($current_action=='rules' || $context['browser']['is_ie4']) ? '<td class="maintab_active_' . $first . '"> </td>' : '' , '
<td valign="top" class="maintab_' , $current_action == 'rules' ? 'active_back' : 'back' , '">
<a href="http://www.mojsajt.com/pravila.html">Rules</a>
</td>' , $current_action == 'rules' ? '<td class="maintab_active_' . $last . '"> </td>' : '';
6. Guglaj.