Pour supprimer l'affichage de l'heure de publication des billets et commentaires, il faut modifier le fichier post.php et list.php situés dans le répertoire themes/default/

post.php

  • retrouver la ligne contenant :

    <?php dcPostDate(); ?> &agrave; <?php dcPostTime(); ?>

    et la remplacer par :

    <?php dcPostDate(); #(replace this # by ? to display hour)> &agrave; <?php dcPostTime(); ?>
  • retrouver les lignes contenant :

    Le <?php dcCommentDate(); ?> &agrave;
    <?php dcCommentTime(); ?>, par <strong><?php dcCommentAuthor(); ?></strong></p>


    et les remplacer par : (bien respecter la position des retours à la ligne)

    Le <?php dcCommentDate(); #(replace this # by ? to display hour) &agrave; <?php dcCommentTime(); ?>,
    par <strong><?php dcCommentAuthor(); ?></strong></p>

list.php

  • retrouver la ligne contenant :

    <?php dcPostDate(); ?> &agrave; <?php dcPostTime(); ?>

    et la remplacer par :

    <?php dcPostDate(); #(replace this # by ? to display date)> &agrave; <?php dcPostTime(); ?>

Et voilà !