Bonjour x)
Alors, dans le
template Index_box tu trouveras cette partie :
- Code:
-
<table width="100%" border="0" cellspacing="1" cellpadding="0" align="center">
<tr>
<td valign="bottom">
<!-- BEGIN switch_user_logged_in -->
<span class="gensmall">{LAST_VISIT_DATE}<br />
{CURRENT_TIME}<br />
</span>
<!-- END switch_user_logged_in -->
<div class="nav"><a class="nav" href="{U_INDEX}">{L_INDEX}</a>{NAV_CAT_DESC}</div>
</td>
<td class="gensmall" align="right" valign="bottom">
<!-- BEGIN switch_user_logged_in -->
<a class="gensmall" href="{U_SEARCH_NEW}">{L_SEARCH_NEW}</a><br />
<a class="gensmall" href="{U_SEARCH_SELF}">{L_SEARCH_SELF}</a><br />
<!-- END switch_user_logged_in -->
<a class="gensmall" href="{U_SEARCH_UNANSWERED}">{L_SEARCH_UNANSWERED}</a>
</td>
</tr>
</table>
- Code:
-
{LAST_VISIT_DATE}
c'est la date de la dernière visite
- Code:
-
{CURRENT_TIME}
c'est la date actuelle
- Code:
-
<a class="gensmall" href="{U_SEARCH_NEW}">{L_SEARCH_NEW}</a>
c'est "Voir les nouveaux messages"
- Code:
-
<a class="gensmall" href="{U_SEARCH_SELF}">{L_SEARCH_SELF}</a>
c'est "Voir ses messages"
- Code:
-
<a class="gensmall" href="{U_SEARCH_UNANSWERED}">{L_SEARCH_UNANSWERED}</a>
C'est "voir les messages sans réponse".
Pour qu'ils s'affichent en bas de la liste des forums, tu peux placer ces différents éléments juste après
- Code:
-
<!-- END tablefoot --><!-- END catrow -->
Dans le
template index_body tu trouveras cette partie :
- Code:
-
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="50%" valign="top">
<!-- BEGIN switch_user_logged_in -->
<span class="gensmall"><a href="{U_MARK_READ}" class="gensmall">{L_MARK_FORUMS_READ}</a>
<!-- END switch_user_logged_in -->
<!-- BEGIN switch_delete_cookies -->
<br /><a href="{switch_delete_cookies.U_DELETE_COOKIES}" class="gensmall">{switch_delete_cookies.L_DELETE_COOKIES}</a>
<!-- END switch_delete_cookies -->
</span>
</td>
<td width="50%" align="right">
<span class="gensmall">
<a href="{U_TODAY_ACTIVE}" class="gensmall">{L_TODAY_ACTIVE}</a><br />
<a href="{U_TODAY_POSTERS}" class="gensmall">{L_TODAY_POSTERS}</a><br />
<a href="{U_OVERALL_POSTERS}" class="gensmall">{L_OVERALL_POSTERS}</a>
<!-- BEGIN switch_on_index -->
<!-- BEGIN switch_delete_cookies -->
<br /><a href="{switch_on_index.switch_delete_cookies.U_DELETE_COOKIES}" class="gensmall">{switch_on_index.switch_delete_cookies.L_DELETE_COOKIES}</a>
<!-- END switch_delete_cookies -->
<!-- END switch_on_index -->
</span>
</td>
</tr>
</table>
- Code:
-
<a href="{U_MARK_READ}" class="gensmall">{L_MARK_FORUMS_READ}</a>
C'est "Marquer tous les forums comme lus"
- Code:
-
<a href="{switch_delete_cookies.U_DELETE_COOKIES}" class="gensmall">{switch_delete_cookies.L_DELETE_COOKIES}</a>
C'est "supprimer les cookies du forum"
- Code:
-
<a href="{U_TODAY_ACTIVE}" class="gensmall">{L_TODAY_ACTIVE}</a>
C'est "sujets actifs du jour"
- Code:
-
<a href="{U_TODAY_POSTERS}" class="gensmall">{L_TODAY_POSTERS}</a>
C'est "top 20 des posteurs du jour"
- Code:
-
<a href="{U_OVERALL_POSTERS}" class="gensmall">{L_OVERALL_POSTERS}</a>
c'est "Top 20 des posteurs du forum"
Tu peux les supprimer ou les réagencer, fais juste attention à un truc : chaque type de code se trouve entre des balises de ce genre :
- Code:
-
<!-- BEGIN switch_quelque_chose --> BOUT DE CODE <!-- END switch_quelque_chose -->
Il faut que tu fasses attention à les remettre même si tu déplaces les codes
Voilà, tu as tous les éléments, le reste ne tient qu'à faire usage des bases du HTML