supprimer une ligne

Bonsoir

je souhaiterai ne pas afficher cette ligne qui suit automatiquement un article:
Classé dans : Access/Equipements, - Mots clés : aucun - aucun commentaire

mais que "aucun commentaire" , ou si il en a un, soit afficher a coté de la date.

merci pour votre aide.

Réponses

  • Bonsoir @zenpix,

    Est-il possible d'avoir le fichier home.php que je puisse t'indiquer quoi modifier.

    Merci.
  • voici ti_pierre

    <?php include(dirname(__FILE__).'/header.php'); ?>
    <?php include(dirname(__FILE__).'/sidebar.php'); ?>
    <div id="content">

    <?php while($plxShow->plxMotor->plxRecord_arts->loop()): ?>
    <h2><?php $plxShow->artTitle('link'); ?></h2>
    <p class="art-topinfos"> <?php $plxShow->artDate('#num_day #month #num_year(4)'); ?></p>
    <div class="art-chapo"><?php $plxShow->artChapo('>>> Lire la suite de : #art_title '); ?></div>
    <p class="art-infos"><?php $plxShow->lang('CLASSIFIED_IN') ?> : <?php $plxShow->artCat(); ?> - <?php $plxShow->lang('TAGS') ?> : <?php $plxShow->artTags(); ?> - <?php $plxShow->artNbCom(); ?></p>
    <?php endwhile; ?>

    <p id="pagination"><?php $plxShow->pagination(); ?></p>

    </div>



    </div>

    <?php include(dirname(__FILE__).'/footer.php'); ?>
  • Voilà le code modifié, à remplacer donc le home.php par le code suivant.
    [== PHP ==]
    <?php include(dirname(__FILE__).'/header.php'); ?>
    <?php include(dirname(__FILE__).'/sidebar.php'); ?>
         <div id="content">
                
                <?php while($plxShow->plxMotor->plxRecord_arts->loop()): ?>
                    <h2><?php $plxShow->artTitle('link'); ?></h2>
                    <p class="art-topinfos"> <?php $plxShow->artDate('#num_day #month #num_year(4)'); ?> - <?php $plxShow->artNbCom(); ?></p>
                    <div class="art-chapo"><?php $plxShow->artChapo('>>> Lire la suite de : #art_title '); ?></div>
                <?php endwhile; ?>
                <p id="pagination"><?php $plxShow->pagination(); ?></p>
            </div>
           
        </div>
    <?php include(dirname(__FILE__).'/footer.php'); ?>
    

    Merci de me valider ou me dire si un bogue persiste.
  • Merci beaucoup ti_pierre ;)
    les modifications correspondent parfaitement a la demande.
    tout fonctionne.

    la communauté Pluxml est aussi rapide et éfficace que Pluxml !
Connectez-vous ou Inscrivez-vous pour répondre.