Séparer les catégories sur l'index sous Subsilver2
Par défaut, le code de subsilver2 colle les catégories ensemble pour former un grand tableau.
Ce tutoriel, qui fait suite à des tests effectués en local pour répondre à un membre sur phpBB-fr, vous permettra de les séparer pour en arriver à un résultat similaire à ceci :
http://img.photobucket.com/albums/v381/ladykatt/separer-categories-sub2.png
Ce tutoriel a été testé sur un phpBB 3.0.7 avec un thème subsilver2. Ceci est compatible avec 3.0.7-PL1
Il est fortement recommandé de faire une sauvegarde du fichier à modifier avant de faire les modifications !
Modifications :
OUVRIR
styles/subsilver2/template/forumlist_body.html
TROUVER
<tr>
<td class="cat" colspan="5" align="{S_CONTENT_FLOW_END}"><!-- IF not S_IS_BOT and U_MARK_FORUMS --><a class="nav" href="{U_MARK_FORUMS}">{L_MARK_FORUMS_READ}</a><!-- ENDIF --> </td>
</tr>
<tr>
<th colspan="2"> {L_FORUM} </th>
<th width="50"> {L_TOPICS} </th>
<th width="50"> {L_POSTS} </th>
<th> {L_LAST_POST} </th>
</tr>
<!-- BEGIN forumrow -->
<!-- IF forumrow.S_IS_CAT -->
<tr>
<td class="cat" colspan="2"><h4><a href="{forumrow.U_VIEWFORUM}">{forumrow.FORUM_NAME}</a></h4></td>
<td class="catdiv" colspan="3"> </td>
</tr>
<!-- ELSEIF forumrow.S_IS_LINK -->
REMPLACER PAR
<tr>
<td class="cat" align="{S_CONTENT_FLOW_END}"><!-- IF not S_IS_BOT and U_MARK_FORUMS --><a class="nav" href="{U_MARK_FORUMS}">{L_MARK_FORUMS_READ}</a><!-- ENDIF --> </td>
</tr>
</tr>
<!-- BEGIN forumrow -->
<!-- IF (forumrow.S_IS_CAT and not forumrow.S_FIRST_ROW) or forumrow.S_NO_CAT -->
</table>
<br clear="all" />
<!-- ENDIF -->
<!-- IF forumrow.S_IS_CAT or forumrow.S_FIRST_ROW or forumrow.S_NO_CAT -->
<table class="tablebg" cellspacing="1" width="100%">
<tr>
<th colspan="2"> <!-- IF forumrow.S_IS_CAT --> <a href="{forumrow.U_VIEWFORUM}">{forumrow.FORUM_NAME}</a><!-- ELSE -->{L_FORUM}<!-- ENDIF --> </th>
<th width="50"> {L_TOPICS} </th>
<th width="50"> {L_POSTS} </th>
<th> {L_LAST_POST} </th>
</tr>
<!-- ENDIF -->
<!-- IF not forumrow.S_IS_CAT -->
<!-- IF forumrow.S_IS_LINK -->
TROUVER ET SUPPRIMER
<!-- IF forumrow.S_NO_CAT -->
<tr>
<td class="cat" colspan="2"><h4>{L_FORUM}</h4></td>
<td class="catdiv" colspan="3"> </td>
</tr>
<!-- ENDIF -->
TROUVER
<!-- BEGINELSE -->
<tr>
<td class="row1" colspan="5" align="center"><p class="gensmall">{L_NO_FORUMS}</p></td>
</tr>
<!-- END forumrow -->
</table>
REMPLACER PAR
<!-- IF forumrow.S_LAST_ROW -->
</table>
<br clear="all" />
<!-- ENDIF -->
<!-- ENDIF -->
<!-- BEGINELSE -->
<table class="tableg">
<tr>
<td class="row1" colspan="5" align="center"><p class="gensmall">{L_NO_FORUMS}</p></td>
</tr>
</table>
<!-- ENDELSE -->
<!-- END forumrow -->