Index
Forums
Annuaire
Référencement
Télécharger
  phpBB SEO : Référencement Google, MSN, Yahoo, Annuaires, Forums  
phpBB SEO
Boards
Directory  
SEO  
Downloads
 
  Rechercher Search
    S'enregistrer
Pseudo :  Passe :  Auto  
Register  
 
   
Séparer les catégories
Aller à la page 1, 2, 3, 4  Suivante
 
Poster un nouveau sujet   Répondre au sujet    phpBB SEO » Forum Référencement  » Le Forum phpBB
::  
Auteur Message
Sagesse
phpBB SEO Team
phpBB SEO Team


Inscrit le: 14 Oct 2006
Messages: 202
Localisation: Lyon

Séparer les catégoriesPosté le: Lun Nov 27, 2006 9:22 pm    Sujet du message: Séparer les catégories

Je voulais tester esthétiquement la séparation des catégories dans l'index comme ici

Une recherche sur Google et sur phpbb-fr ne m'a rien donné

Idea

_________________
Sagesse || Forum et sagesse || Nouveau ! Cours de Sagesse par correspondance
Revenir en haut de page
Visiter le site web de l'utilisateur
dcz
Administrateur - Site Admin
Administrateur - Site Admin


Inscrit le: 28 Avr 2006
Messages: 15121

Séparer les catégoriesPosté le: Lun Nov 27, 2006 10:02 pm    Sujet du message: Re: Séparer les catégories

Faut regarder des examples de templates qui font pareil comme Cleansilver ( sur http://www.phpbb.com/styles/demo.php ).

Après pour le coup de virer les répétitions de codes sur les catégories (titre des colonnes et éventuellement liens) c'est avec les fonctions de templating de XS mod, du bricolage maison quoi.

++

_________________
Useful links :
SEO Forum || SEO Directory || SEO phpBB || SEO phpBB3 || Search
____________________

Liens Utiles :
Forum référencement || Annuaire référencement || Référencement phpBB || Référencement phpBB3 || Recherche
Revenir en haut de page
Visiter le site web de l'utilisateur
fred_du_41
PR1
PR1


Inscrit le: 18 Juin 2006
Messages: 161

Séparer les catégoriesPosté le: Mar Nov 28, 2006 10:42 am    Sujet du message: Re: Séparer les catégories

Bonjour Sagesse, bonjour Dcz Very Happy

Pour faire ce que tu souhaites tu as aussi un "truc" tout simple Wink

Code:

#
#-----[ OPEN ]------------------------------------------
#
templates/subSilver/index_body.tpl
#
#-----[ FIND ]------------------------------------------
#
<table width="100%" cellpadding="2" cellspacing="1" border="0" class="forumline">
  <tr>
   <th colspan="2" class="thCornerL" height="25" nowrap="nowrap">&nbsp;{L_FORUM}&nbsp;</th>
   <th width="50" class="thTop" nowrap="nowrap">&nbsp;{L_TOPICS}&nbsp;</th>
   <th width="50" class="thTop" nowrap="nowrap">&nbsp;{L_POSTS}&nbsp;</th>
   <th class="thCornerR" nowrap="nowrap">&nbsp;{L_LASTPOST}&nbsp;</th>
  </tr>
  <!-- BEGIN catrow -->
  <tr>
   <td class="catLeft" colspan="2" height="28"><span class="cattitle"><a href="{catrow.U_VIEWCAT}" class="cattitle">{catrow.CAT_DESC}</a></span></td>
   <td class="rowpic" colspan="3" align="right">&nbsp;</td>
  </tr>
  <!-- BEGIN forumrow -->
  <tr>
   <td class="row1" align="center" valign="middle" height="50"><img src="{catrow.forumrow.FORUM_FOLDER_IMG}" width="46" height="25" alt="{catrow.forumrow.L_FORUM_FOLDER_ALT}" title="{catrow.forumrow.L_FORUM_FOLDER_ALT}" /></td>
   <td class="row1" width="100%" height="50"><span class="forumlink"> <a href="{catrow.forumrow.U_VIEWFORUM}" class="forumlink">{catrow.forumrow.FORUM_NAME}</a><br />
     </span> <span class="genmed">{catrow.forumrow.FORUM_DESC}<br />
     </span><span class="gensmall">{catrow.forumrow.L_MODERATOR} {catrow.forumrow.MODERATORS}</span></td>
   <td class="row2" 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="row2" align="center" valign="middle" height="50" nowrap="nowrap"> <span class="gensmall">{catrow.forumrow.LAST_POST}</span></td>
  </tr>
  <!-- END forumrow -->
  <!-- END catrow -->
</table>
#
#-----[ REPLACE WITH ]------------------------------------
#
<!-- BEGIN catrow -->
<table width="100%" cellpadding="2" cellspacing="1" border="0" class="forumline">
  <tr>
   <th colspan="2" class="thCornerL" height="25" nowrap="nowrap">&nbsp;{L_FORUM}&nbsp;</th>
   <th width="50" class="thTop" nowrap="nowrap">&nbsp;{L_TOPICS}&nbsp;</th>
   <th width="50" class="thTop" nowrap="nowrap">&nbsp;{L_POSTS}&nbsp;</th>
   <th class="thCornerR" nowrap="nowrap">&nbsp;{L_LASTPOST}&nbsp;</th>
  </tr>
  <tr>
   <td class="catLeft" colspan="2" height="28"><span class="cattitle"><a href="{catrow.U_VIEWCAT}" class="cattitle">{catrow.CAT_DESC}</a></span></td>
   <td class="rowpic" colspan="3" align="right">&nbsp;</td>
  </tr>
  <!-- BEGIN forumrow -->
  <tr>
   <td class="row1" align="center" valign="middle" height="50"><img src="{catrow.forumrow.FORUM_FOLDER_IMG}" width="46" height="25" alt="{catrow.forumrow.L_FORUM_FOLDER_ALT}" title="{catrow.forumrow.L_FORUM_FOLDER_ALT}" /></td>
   <td class="row1" width="100%" height="50"><span class="forumlink"> <a href="{catrow.forumrow.U_VIEWFORUM}" class="forumlink">{catrow.forumrow.FORUM_NAME}</a><br />
     </span> <span class="genmed">{catrow.forumrow.FORUM_DESC}<br />
     </span><span class="gensmall">{catrow.forumrow.L_MODERATOR} {catrow.forumrow.MODERATORS}</span></td>
   <td class="row2" 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="row2" align="center" valign="middle" height="50" nowrap="nowrap"> <span class="gensmall">{catrow.forumrow.LAST_POST}</span></td>
  </tr>
  <!-- END forumrow -->
  </table>
  <br />
  <!-- END catrow -->
#
#-----[ SAVE/CLOSE ALL FILES ]---------------------------
# EoM


Ou si tu utilises Simple Subforum comme moi Very Happy

Code:

#
#-----[ OPEN ]------------------------------------------
#
templates/subSilver/index_body.tpl
#
#-----[ FIND ]------------------------------------------
#
<table width="100%" cellpadding="2" cellspacing="1" border="0" class="forumline">
  <tr>
   <th colspan="2" class="thCornerL" height="25" nowrap="nowrap">&nbsp;{L_FORUM}&nbsp;</th>
   <th width="50" class="thTop" nowrap="nowrap">&nbsp;{L_TOPICS}&nbsp;</th>
   <th width="50" class="thTop" nowrap="nowrap">&nbsp;{L_POSTS}&nbsp;</th>
   <th class="thCornerR" nowrap="nowrap">&nbsp;{L_LASTPOST}&nbsp;</th>
  </tr>
  <!-- BEGIN catrow -->
  <tr>
   <td class="catLeft" colspan="2" height="28"><span class="cattitle"><a href="{catrow.U_VIEWCAT}" class="cattitle">{catrow.CAT_DESC}</a></span></td>
   <td class="rowpic" colspan="3" align="right">&nbsp;</td>
  </tr>
  <!-- BEGIN forumrow -->
  <!-- IF ! forumrow.PARENT -->


  <tr>
   <td class="row1" align="center" valign="middle" height="50"><img src="{catrow.forumrow.FORUM_FOLDER_IMG}" width="46" height="25" alt="{catrow.forumrow.L_FORUM_FOLDER_ALT}" title="{catrow.forumrow.L_FORUM_FOLDER_ALT}" /></td>
   <td class="row1" width="100%" height="50"><span class="forumlink"> <a href="{catrow.forumrow.U_VIEWFORUM}" class="forumlink">{catrow.forumrow.FORUM_NAME}</a><br />
     </span> <span class="genmed">{catrow.forumrow.FORUM_DESC}<br />
<!-- IF catrow.forumrow.MODERATORS --><span class="gensmall">{catrow.forumrow.L_MODERATOR} {catrow.forumrow.MODERATORS}<br /></span><!-- ENDIF -->
     <!-- BEGIN sub --><!-- DEFINE $HAS_SUB = 1 --><!-- IF catrow.forumrow.sub.NUM > 0 -->, <!-- ELSE --><span class="genmed">{L_SUBFORUMS}: <!-- ENDIF -->{catrow.forumrow.sub.LAST_POST_SUB} <a href="{catrow.forumrow.sub.U_VIEWFORUM}" <!-- IF catrow.forumrow.sub.UNREAD -->class="topic-new"<!-- ENDIF --> title="{catrow.forumrow.sub.FORUM_DESC_HTML}">{catrow.forumrow.sub.FORUM_NAME}</a><!-- END sub -->
     <!-- IF $HAS_SUB --></span><!-- UNDEFINE $HAS_SUB --><!-- ENDIF -->
   </td>
   <td class="row2" align="center" valign="middle" height="50"><span class="gensmall">{catrow.forumrow.TOTAL_TOPICS}</span></td>
   <td class="row2" align="center" valign="middle" height="50"><span class="gensmall">{catrow.forumrow.TOTAL_POSTS}</span></td>


   <td class="row2" align="center" valign="middle" height="50" nowrap="nowrap"> <span class="gensmall">{catrow.forumrow.LAST_POST}</span></td>
  </tr>
  <!-- ENDIF -->


  <!-- END forumrow -->
  <!-- END catrow -->
</table>
#
#-----[ REPLACE WITH ]------------------------------------
#
<!-- BEGIN catrow -->
<table width="100%" cellpadding="2" cellspacing="1" border="0" class="forumline">
  <tr>
   <th colspan="2" class="thCornerL" height="25" nowrap="nowrap">&nbsp;{L_FORUM}&nbsp;</th>
   <th width="50" class="thTop" nowrap="nowrap">&nbsp;{L_TOPICS}&nbsp;</th>
   <th width="50" class="thTop" nowrap="nowrap">&nbsp;{L_POSTS}&nbsp;</th>
   <th class="thCornerR" nowrap="nowrap">&nbsp;{L_LASTPOST}&nbsp;</th>
  </tr>
  <tr>
   <td class="catLeft" colspan="2" height="28"><span class="cattitle"><a href="{catrow.U_VIEWCAT}" class="cattitle">{catrow.CAT_DESC}</a></span></td>
   <td class="rowpic" colspan="3" align="right">&nbsp;</td>
  </tr>
  <!-- BEGIN forumrow -->
  <!-- IF ! forumrow.PARENT -->


  <tr>
   <td class="row1" align="center" valign="middle" height="50"><img src="{catrow.forumrow.FORUM_FOLDER_IMG}" width="46" height="25" alt="{catrow.forumrow.L_FORUM_FOLDER_ALT}" title="{catrow.forumrow.L_FORUM_FOLDER_ALT}" /></td>
   <td class="row1" width="100%" height="50"><span class="forumlink"> <a href="{catrow.forumrow.U_VIEWFORUM}" class="forumlink">{catrow.forumrow.FORUM_NAME}</a><br />
     </span> <span class="genmed">{catrow.forumrow.FORUM_DESC}<br />
<!-- IF catrow.forumrow.MODERATORS --><span class="gensmall">{catrow.forumrow.L_MODERATOR} {catrow.forumrow.MODERATORS}<br /></span><!-- ENDIF -->
     <!-- BEGIN sub --><!-- DEFINE $HAS_SUB = 1 --><!-- IF catrow.forumrow.sub.NUM > 0 -->, <!-- ELSE --><span class="genmed">{L_SUBFORUMS}: <!-- ENDIF -->{catrow.forumrow.sub.LAST_POST_SUB} <a href="{catrow.forumrow.sub.U_VIEWFORUM}" <!-- IF catrow.forumrow.sub.UNREAD -->class="topic-new"<!-- ENDIF --> title="{catrow.forumrow.sub.FORUM_DESC_HTML}">{catrow.forumrow.sub.FORUM_NAME}</a><!-- END sub -->
     <!-- IF $HAS_SUB --></span><!-- UNDEFINE $HAS_SUB --><!-- ENDIF -->
   </td>
   <td class="row2" align="center" valign="middle" height="50"><span class="gensmall">{catrow.forumrow.TOTAL_TOPICS}</span></td>
   <td class="row2" align="center" valign="middle" height="50"><span class="gensmall">{catrow.forumrow.TOTAL_POSTS}</span></td>


   <td class="row2" align="center" valign="middle" height="50" nowrap="nowrap"> <span class="gensmall">{catrow.forumrow.LAST_POST}</span></td>
  </tr>
  <!-- ENDIF -->
  <!-- END forumrow -->
  </table>
  <br />
  <!-- END catrow -->
#
#-----[ SAVE/CLOSE ALL FILES ]---------------------------
# EoM

_________________
La Passion du Reflex Numérique : │Photos-entre-Amis ││Annuaire
Revenir en haut de page
Visiter le site web de l'utilisateur
Sagesse
phpBB SEO Team
phpBB SEO Team


Inscrit le: 14 Oct 2006
Messages: 202
Localisation: Lyon

Séparer les catégoriesPosté le: Mar Nov 28, 2006 11:29 am    Sujet du message: Re: Séparer les catégories

fred_du_41 Very Happy

Impecc çà fonctionne très bien

Merci

_________________
Sagesse || Forum et sagesse || Nouveau ! Cours de Sagesse par correspondance
Revenir en haut de page
Visiter le site web de l'utilisateur
morphoSEO
PR1
PR1


Inscrit le: 02 Nov 2006
Messages: 186

Séparer les catégoriesPosté le: Mar Nov 28, 2006 5:58 pm    Sujet du message: Re: Séparer les catégories

c'est le mod de reddog

www.reddevboard.com

@+
Revenir en haut de page
fred_du_41
PR1
PR1


Inscrit le: 18 Juin 2006
Messages: 161

Séparer les catégoriesPosté le: Mar Nov 28, 2006 6:10 pm    Sujet du message: Re: Séparer les catégories

007007 a écrit:
c'est le mod de reddog

www.reddevboard.com

@+


Non, mais ça y ressemble Wink

_________________
La Passion du Reflex Numérique : │Photos-entre-Amis ││Annuaire
Revenir en haut de page
Visiter le site web de l'utilisateur
dcz
Administrateur - Site Admin
Administrateur - Site Admin


Inscrit le: 28 Avr 2006
Messages: 15121

Séparer les catégoriesPosté le: Jeu Nov 30, 2006 8:47 pm    Sujet du message: Re: Séparer les catégories

Il est dans tous les template qui utilisent des catégories séparées ce code ... Après la source ...

++

_________________
Useful links :
SEO Forum || SEO Directory || SEO phpBB || SEO phpBB3 || Search
____________________

Liens Utiles :
Forum référencement || Annuaire référencement || Référencement phpBB || Référencement phpBB3 || Recherche
Revenir en haut de page
Visiter le site web de l'utilisateur
Solarius



Inscrit le: 02 Déc 2006
Messages: 3

Séparer les catégoriesPosté le: Sam Déc 02, 2006 6:26 pm    Sujet du message: Re: Séparer les catégories

Je viens a peine de commencer a créer un forum et ce topic tombe bien car je cherchais comment faire pour séparer les catégories.
Malheureusement le code donné ici bug un peu sur mon forum.
Une ligne en haut de la première catégorie "Stargate World" est rajouté et ca fait moche. Il y a "Forum Sujets Messages Derniers Messages" qui ne devrait pas être la.
Comment résoudre ce problème merci.

Voici le lien du forum:

http://www.forum-stargate-worlds.wb.st/
Revenir en haut de page
dcz
Administrateur - Site Admin
Administrateur - Site Admin


Inscrit le: 28 Avr 2006
Messages: 15121

Séparer les catégoriesPosté le: Dim Déc 03, 2006 11:50 am    Sujet du message: Re: Séparer les catégories

Et bienvenue Very Happy

A mon avis cela viens du fait que tu n'utilises pas SubSilver au départ.
Il doit y avoir un :

Code:
<table width="100%" cellpadding="2" cellspacing="1" border="0" class="forumline">
  <tr>
   <th colspan="2" class="thCornerL" height="25" nowrap="nowrap">&nbsp;{L_FORUM}&nbsp;</th>
   <th width="50" class="thTop" nowrap="nowrap">&nbsp;{L_TOPICS}&nbsp;</th>
   <th width="50" class="thTop" nowrap="nowrap">&nbsp;{L_POSTS}&nbsp;</th>
   <th class="thCornerR" nowrap="nowrap">&nbsp;{L_LASTPOST}&nbsp;</th>
  </tr>


en trop au début de index_body.tpl.

Après, évites les frames, parce que là -http://www.forum-stargate-worlds.wb.st/ ne change jamais, pareil pour toutes les pages. Une seul URL.

++

_________________
Useful links :
SEO Forum || SEO Directory || SEO phpBB || SEO phpBB3 || Search
____________________

Liens Utiles :
Forum référencement || Annuaire référencement || Référencement phpBB || Référencement phpBB3 || Recherche
Revenir en haut de page
Visiter le site web de l'utilisateur
doudou
phpBB SEO Team
phpBB SEO Team


Inscrit le: 17 Sep 2006
Messages: 335
Localisation: Dans son Coeur...

Séparer les catégoriesPosté le: Dim Déc 03, 2006 12:58 pm    Sujet du message: Re: Séparer les catégories

Je viens de séparer les catégories de mon forum (merci pour le mod). Les catégories ont bien été séparées mais par contre le nombre de sujets et de messages n'est plus affiché. la cellule est vide et ne comporte plus le nombre de messages et de sujets.

_________________
Forum phpBB3 | mod Rewrite phpBB3 | mod Rewrite phpBB3
Revenir en haut de page
Visiter le site web de l'utilisateur
Solarius



Inscrit le: 02 Déc 2006
Messages: 3

Séparer les catégoriesPosté le: Dim Déc 03, 2006 2:12 pm    Sujet du message: Re: Séparer les catégories

Un grand merci dcz, ça marche !
Et euh pour l'adresse, en faite c'est une adresse de redirection gratuite et je sais pas comment on fait pour avoir une adresse différente sur chaque page avec une adresse de redirection.
Revenir en haut de page
dcz
Administrateur - Site Admin
Administrateur - Site Admin


Inscrit le: 28 Avr 2006
Messages: 15121

Séparer les catégoriesPosté le: Dim Déc 03, 2006 3:07 pm    Sujet du message: Re: Séparer les catégories

@doudou

Ouuuuh le voleur de boutons Laughing

Pour ton histoire de catégories, on dirait que tu as appliqué les changements pour le mod simple sub forum sans avoir le mod.

@Solarius

Je pense que c'est un bon sujet général sur les techniques de référencement : comment se dépatouiller de l'utilisation de domaines ne permettant vraisemblablement pas de gestion des DNS ...

++

_________________
Useful links :
SEO Forum || SEO Directory || SEO phpBB || SEO phpBB3 || Search
____________________

Liens Utiles :
Forum référencement || Annuaire référencement || Référencement phpBB || Référencement phpBB3 || Recherche
Revenir en haut de page
Visiter le site web de l'utilisateur
doudou
phpBB SEO Team
phpBB SEO Team


Inscrit le: 17 Sep 2006
Messages: 335
Localisation: Dans son Coeur...

Séparer les catégoriesPosté le: Lun Déc 04, 2006 12:20 am    Sujet du message: Re: Séparer les catégories

@dcz,
Oui je mettais gourré, pour les catégories, ça va.
Pour tes boutons Very Happy

un peu hors sujet, j'ai vu sur les forums anglais la nouvelle version de Mod rewrite phpBB SEO avec des flux RSS, le mod est il sorti ?

_________________
Forum phpBB3 | mod Rewrite phpBB3 | mod Rewrite phpBB3
Revenir en haut de page
Visiter le site web de l'utilisateur
dcz
Administrateur - Site Admin
Administrateur - Site Admin


Inscrit le: 28 Avr 2006
Messages: 15121

Séparer les catégoriesPosté le: Lun Déc 04, 2006 8:40 am    Sujet du message: Re: Séparer les catégories

doudou a écrit:

un peu hors sujet, j'ai vu sur les forums anglais la nouvelle version de Mod rewrite phpBB SEO avec des flux RSS, le mod est il sorti ?


Apeins Laughing

Tu aimes ça les hs toi Mr. Green

Et bien non, pas encore.

++

_________________
Useful links :
SEO Forum || SEO Directory || SEO phpBB || SEO phpBB3 || Search
____________________

Liens Utiles :
Forum référencement || Annuaire référencement || Référencement phpBB || Référencement phpBB3 || Recherche
Revenir en haut de page
Visiter le site web de l'utilisateur
doudou
phpBB SEO Team
phpBB SEO Team


Inscrit le: 17 Sep 2006
Messages: 335
Localisation: Dans son Coeur...

Séparer les catégoriesPosté le: Lun Déc 04, 2006 12:46 pm    Sujet du message: Re: Séparer les catégories

Very Happy
Je voulais faire l'économie d'un autre message. La loi du moindre effort haha.

_________________
Forum phpBB3 | mod Rewrite phpBB3 | mod Rewrite phpBB3
Revenir en haut de page
Visiter le site web de l'utilisateur
Montrer les messages depuis:   
Poster un nouveau sujet   Répondre au sujet    phpBB SEO » Forum Référencement  » Le Forum phpBB
Page 1 sur 4 Aller à la page 1, 2, 3, 4  Suivante

Navigation Autres sujets de discussion

Sauter vers: