I. Ce este necesar pentru a aplica acest tutorial?
- Acest tutorial poate fi aplicat pe forumurile voastre doar daca aveti versiunea phpBB2 sau PunBB;
- Trebuie sa fiti fondatorul forumului, adica cel care a creat forumul pentru a avea acces la template-uri;
- Trebuie sa aveti cunostinte minime in coding si in utilizarea template-urilor;
II. Ce trebuie să faceţi?
Pentru phpBB2:
Panou de administrare => Afisare => Pagina de start => Structura si ierahie => Nivel de compresie al indexului:
Separati categoriile sau indexurile : Mediu
Panou de administrare => Afisare => Template-uri => General => index_box.
Apăsaţi pe butonul editeaza(acea cheiţă) pentru a face modificarile adecvate:
Inlocuiti codul ce urmeaza:
- Cod:
-
<tr>
<th colspan="{catrow.tablehead.INC_SPAN}" nowrap="nowrap" width="100%" class="secondarytitle"> {catrow.tablehead.L_FORUM} </th>
<th nowrap="nowrap" width="50">{L_TOPICS}</th>
<th nowrap="nowrap" width="50">{L_POSTS}</th>
<th nowrap="nowrap" width="150"><div style="width:150px;">{L_LASTPOST}</div></th>
</tr>
Cu urmatorul cod:
- Cod:
-
<tr>
<th colspan="{catrow.tablehead.INC_SPAN}" nowrap="nowrap" width="100%" class="secondarytitle"> {catrow.tablehead.L_FORUM} </th>
<th nowrap="nowrap" width="50">{L_TOPICS}</th>
<th nowrap="nowrap" width="50">{L_POSTS}</th>
<th nowrap="nowrap" width="150" class="new column">Coloana noua</th>
<th nowrap="nowrap" width="150"><div style="width:150px;">{L_LASTPOST}</div></th>
</tr>
Asta nu e tot! Trebuie sa cream si continutul coloanei. Pentru asta vom inlocui:
- Cod:
-
<td class="row3" align="center" valign="middle" height="50">
<span class="gensmall">{catrow.forumrow.TOPICS}</span>
</td>
<td class="row2" align="center" valign="middle" height="50">
<span class="gensmall">{catrow.forumrow.POSTS}</span>
</td>
<td class="row3 over" align="center" valign="middle" height="50">
<span class="gensmall">{catrow.forumrow.LAST_POST}</span>
</td>
Cu codul urmator:
- Cod:
-
<td class="row3" align="center" valign="middle" height="50">
<span class="gensmall">{catrow.forumrow.TOPICS}</span>
</td>
<td class="row2" align="center" valign="middle" height="50">
<span class="gensmall">{catrow.forumrow.POSTS}</span>
</td>
<td class="row3 over new content" align="center" valign="middle" height="50">
<span class="gensmall">Continut</span>
</td>
<td class="row3 over" align="center" valign="middle" height="50">
<span class="gensmall">{catrow.forumrow.LAST_POST}</span>
</td>
Iata ce am facut pana aqma!:
[Trebuie sa fiti inscris si conectat pentru a vedea acest link]