CSSActif, le forum, n'est plus maintenu. Il est néanmoins disponible pour consultation. Pour des outils pratiques, rendez-vous sur: Découvrez CSSActif, une collection d'outils et de tutoriels interactifs pour les développeurs Web — HTML, CSS, JavaScript et bien plus! |
| Modification des colonnes "réponses", "vus" et "derniers messages" (phpbb2) | |
| Invité Invité
| Bonjour, j'ai enlevé par templates les colonnes "réponses", "vus" et "derniers messages" pour les post-it et annonces. Mais pour les sujets normaux, les entêtes des colonnes apparaissent encore. Image : Il voudrai finir d'enlever les 3 colonnes marquées par les flèches rouges. Comment faire ? Le template topics_list_box : - Code:
-
<!-- BEGIN topics_list_box --><!-- BEGIN row --><!-- BEGIN header_table --><!-- BEGIN multi_selection --> <script type="text/javascript"> function check_uncheck_main_{topics_list_box.row.header_table.BOX_ID}() { var all_checked = true; for (i = 0; (i < document.{topics_list_box.FORMNAME}.elements.length) && all_checked; i++) { if (document.{topics_list_box.FORMNAME}.elements[i].name == '{topics_list_box.FIELDNAME}[]{topics_list_box.row.header_table.BOX_ID}') { all_checked = document.{topics_list_box.FORMNAME}.elements[i].checked; } } document.{topics_list_box.FORMNAME}.all_mark_{topics_list_box.row.header_table.BOX_ID}.checked = all_checked; } function check_uncheck_all_{topics_list_box.row.header_table.BOX_ID}() { for (i = 0; i < document.{topics_list_box.FORMNAME}.length; i++) { if (document.{topics_list_box.FORMNAME}.elements[i].name == '{topics_list_box.FIELDNAME}[]{topics_list_box.row.header_table.BOX_ID}') { document.{topics_list_box.FORMNAME}.elements[i].checked = document.{topics_list_box.FORMNAME}.all_mark_{topics_list_box.row.header_table.BOX_ID}.checked; } } } </script> <!-- END multi_selection -->
<table class="forumline" width="100%" border="0" cellspacing="1" cellpadding="0"> <tr> <th colspan="{topics_list_box.row.header_table.COLSPAN}" align="center" nowrap="nowrap"> {topics_list_box.row.L_TITLE} </th>
<th align="center" nowrap="nowrap" width="100" height="30" style="background : transparent;"> {topics_list_box.row.L_AUTHOR} </th>
<!-- BEGIN multi_selection --> <th align="center" nowrap="nowrap" width="20"><input onclick="check_uncheck_all_{topics_list_box.row.header_table.BOX_ID}();" type="checkbox" name="all_mark_{topics_list_box.row.header_table.BOX_ID}" value="0" /></th> <!-- END multi_selection --> </tr> <!-- BEGIN pagination --> <tr> <td class="row1" colspan="7" align="right"><span class="gensmall">{PAGINATION}</span></td> </tr> <!-- END pagination --> <!-- END header_table --><!-- BEGIN header_row --> <tr> <td class="row3" colspan="{topics_list_box.row.COLSPAN}"><span class="gensmall"> <b>{topics_list_box.row.L_TITLE}</b></span></td> </tr> <!-- END header_row -->
<!-- BEGIN topic --> {topics_list_box.row.END_TABLE_STICKY} <tr> <!-- BEGIN single_selection --> <td class="{topics_list_box.row.ROW_CLASS}" align="center" valign="middle" width="20"><input type="radio" name="{topics_list_box.FIELDNAME}" value="{topics_list_box.row.FID}" {topics_list_box.row.L_SELECT} /></td> <!-- END single_selection --> <td class="{topics_list_box.row.ROW_FOLDER_CLASS}" align="center" valign="middle" width="20"><img title="{topics_list_box.row.L_TOPIC_FOLDER_ALT}" src="{topics_list_box.row.TOPIC_FOLDER_IMG}" alt="{topics_list_box.row.L_TOPIC_FOLDER_ALT}" /></td> <!-- BEGIN icon --> <td class="{topics_list_box.row.ROW_CLASS}" align="center" valign="middle" width="20">{topics_list_box.row.ICON}</td> <!-- END icon --> <td class="{topics_list_box.row.ROW_CLASS}" onmouseover='this.className="row2"' onmouseout='this.className="{topics_list_box.row.ROW_CLASS}"' width="100%"> <div class="topictitle"> {topics_list_box.row.NEWEST_POST_IMG}{topics_list_box.row.PARTICIPATE_POST_IMG}{topics_list_box.row.TOPIC_TYPE} <h2 class="topic-title"> <a class="topictitle" href="{topics_list_box.row.U_VIEW_TOPIC}">{topics_list_box.row.TOPIC_TITLE}</a> </h2> </div> <!-- BEGIN switch_description --> <span class="genmed">
{topics_list_box.row.topic.switch_description.TOPIC_DESCRIPTION} </span> <!-- END switch_description --> <span class="gensmall">{topics_list_box.row.TOPIC_ANNOUNCES_DATES}{topics_list_box.row.TOPIC_CALENDAR_DATES}</span> <span class="gensmall">{topics_list_box.row.GOTO_PAGE}<!-- BEGIN nav_tree -->{topics_list_box.row.TOPIC_NAV_TREE} <!-- END nav_tree --></span> </td>
<td class="row3" align="center" valign="middle" style="background-color: transparent; border: 0px;" height="30"><span class="name"><strong>{topics_list_box.row.TOPIC_AUTHOR}</strong></span></td>
<!-- BEGIN multi_selection --> <td class="row2" align="center" valign="middle"><span class="postdetails"><input onclick="javascript:check_uncheck_main_{topics_list_box.row.BOX_ID}();" type="checkbox" name="{topics_list_box.FIELDNAME}[]{topics_list_box.row.BOX_ID}" value="{topics_list_box.row.FID}" {topics_list_box.row.L_SELECT} /></span></td> <!-- END multi_selection --> </tr> <!-- END topic --><!-- BEGIN no_topics --> <tr> <td class="row1" colspan="{topics_list_box.row.COLSPAN}" align="center" valign="middle" height="30"><span class="gen">{topics_list_box.row.L_NO_TOPICS}</span></td> </tr> <!-- END no_topics --><!-- BEGIN bottom --> <tr> <td class="catBottom" colspan="{topics_list_box.row.COLSPAN}" valign="middle" style="background-color: transparent; border: 0px;"> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td> <span class="gensmall">{PAGINATION}</span></td> </tr> </table> </td> </tr> <!-- END bottom --><!-- BEGIN footer_table --> </table><!-- END footer_table --><!-- BEGIN spacer --><br class="gensmall" /><!-- END spacer --><!-- END row --><!-- END topics_list_box --> Merci de votre aide |
Dernière édition par vla le Mer 15 Déc 2010, 11:46, édité 1 fois | |
| | | Invité Invité
| Up svp | | |
| | | Murtagh
{ Modérateur }
Messages : 1492
| Bonjour, Les " UP" ne sont pas autorisés dans cette section. Voici un extrait du règlement: - Citation :
- L'action de remonter un sujet («Up») est prohibée, nos codeurs font leur maximum pour apporter rapidement solution à votre problème, inutile de marquer votre impatience. De même, tout propos pouvant suggérer l'empressement ou l'impatience est défendu. Ceci dans votre intérêt: nous sommes peu enclin à répondre à une personne qui fait preuve d'une telle impolitesse. Ce règlement (datée du 28 juin 2010) prévaut sur tout autre clause contraire ailleurs sur le forum, excepté pour les commandes qui requiert une actualisation pour éviter le délestage automatique. Dans ce cas précis, merci de faire une phrase complète, pas un simple «Up»
Merci d'y faire attention à l'avenir et de respecter les règles de l'entraide. | | |
| | | Invité Invité
| Désolé, j'avais oublié ce point du règlement. | | |
| | | Hortie
{ Membre actif }
Messages : 660
| Bonjour ^^
Ici pour les tutoriel pour supprimer les colones "Vus" et "Réponse" : Le tutoriel
Et ici pour supprimer la colone derniers message : Le tutoriel
Par contre pour la colone auteur je ne sais pas. Mais le code que tu a utilisé pour les annonces et les post-it devrait normalement fonctionner également pour tes sujets normaux. Il faut seulement le placer à un endroit différent. Mais je ne suis pas une experte cependant ^^" | | |
| | | Invité Invité
| Merci pour les liens Mais pour ce code ( http://www.css-actif.com/structures-des-forums-f31/supprimer-la-colonne-derniers-messages-t4655.htm#39552 ), je le met où ? | | |
| | | Hiro
Ninja Codeur
Messages : 1179
| Dans ton templates > index_box | | |
| | | Caroo'
{ Membre actif }
Messages : 493
| Bonjour, Votre problème est-il toujours d'actualité ? Si celui-ci est résolu, merci de cocher dans "icône du sujet" l'icône en éditant votre premier post. | | |
| | | Invité Invité
| Salut, désolé, je n'ai pas pu revenir depuis jeudi car j'ai des problèmes d'internet. Je poste ce message depuis un autre ordi qui n'est pas le mien. Je pourrai essayer les scripts ou te répondre que quand ma connexion sera réparée. Merci de ne pas verrouiller le sujet si je n'y répond. Je tâcherai de revenir le plus vite possible une fois ma connexion réparée.
| | |
| | | Invité Invité
| Salut, je viens d'essayer le code sur un autre ordi (toujours le problème d'internet chez moi), et ça na rien changé. | | |
| | | 'Christa
Lostmindy
Messages : 2856
| De mon expérience, ce problème est impossible à corriger T.T Il n'y a rien, dans les templates, qui gère le cas où les post-it/annonces sont dans un tableau séparé des sujets normaux, je suppose que ça passe par le PHP x_x | | |
| | | Invité Invité
| OK, merci J'ai donc enlevé la séparation par tableau, et j'ai mis par une ligne.
Merci beaucoup de m'avoir aidé et désolé de ne pas avoir pu répondre plus vite. résolu | | |
| | | Contenu sponsorisé
| | | | | Modification des colonnes "réponses", "vus" et "derniers messages" (phpbb2) | |
|
Sujets similaires | |
|
| Permission de ce forum: | Vous ne pouvez pas répondre aux sujets dans ce forum
| |
| |
| |
|
| Partenaires Or
|
|