Viewing 14 posts - 1 through 14 (of 14 total)
  • Author
    Posts
  • #29405
    philippe
    Member

    Bonjour,

    j’aurais voulu savoir comment enlever la date et le nom sur tous les articles ( exemple ci-dessous).
    Posté le 04/05/2014 par webmaster

    On m’a dit qu’il faut aller sur le dossier single.php ?

    J élimine qu elle ligne ?
    Merci d avance
    Philippe

    #29413
    Sakin
    Keymaster

    @philippe: Yes, if you totally want to remove then you need to build child theme and edit the function. But you can simply hide it by adding the following css in “Appearance => Theme Options => Custom CSS” box.
    .entry-meta { display: none; }

    #29423
    philippe
    Member

    Merci de votre réponse rapide.
    Je viens d’essayer, sa ne marche pas !
    Je le met ou dans le css de l’option du théme

    <?php
    /**
    * The template used for displaying page content in page.php
    *
    * @package Catch Themes
    * @subpackage Catch_Box
    * @since Catch Box 1.0
    */
    ?>

    <article id=”post-<?php the_ID(); ?>” <?php post_class(); ?>>
    <header class=”entry-header”>
    <h1 class=”entry-title”><?php the_title(); ?></h1>
    </header><!– .entry-header –>

    <div class=”entry-content”>
    <?php the_content(); ?>
    <?php wp_link_pages( array(
    ‘before’ => ‘<div class=”page-link”><span class=”pages”>’ . __( ‘Pages:’, ‘catchbox’ ) . ‘</span>’,
    ‘after’ => ‘</div>’,
    ‘link_before’ => ‘<span>’,
    ‘link_after’ => ‘</span>’,
    ) );
    ?>
    </div><!– .entry-content –>
    <footer class=”entry-meta”>
    <?php edit_post_link( __( ‘Edit’, ‘catchbox’ ), ‘<span class=”edit-link”>’, ‘</span>’ ); ?>
    </footer><!– .entry-meta –>
    </article><!– #post-<?php the_ID(); ?> –>

    Voici ci-dessus la copie du css, il me faut mettre votre code ou ?

    #29429
    Sakin
    Keymaster

    @philippe: You need to put that CSS in Custom CSS box which you will find it in “Appearance => Theme Options => Custom CSS” box. See this screenshot http://www.pinterest.com/pin/548594798331939237/

    #29460
    philippe
    Member

    Super, merci beaucoup c’est ok.
    Merci
    Philippe

    #29464
    Sakin
    Keymaster

    @philippe: Thanks

    #50352
    oni45
    Member

    Bonjour,

    Est-il possible de ne supprimer que la date et l’auteur, mais garder la catégorie?

    Is it possible to remove the author and date details but keeping the category details?

    Merci

    #50367
    Sakin
    Keymaster

    @oni45: If you just want to hide Author and dates, then you can add the following css in “Appearance => Theme Options => Custom CSS” box.
    .entry-header .entry-meta { display: none; }

    #51748
    omrani
    Member

    salut
    j’aurais voulu savoir comment enlever la catégorie sur tous les articles
    Exemple:(Posté dans non classé) !
    Merci )

    #51753
    Sakin
    Keymaster

    @omrani: You can add the following css in “Appearance => Theme Options => Custom CSS” box:
    footer.entry-meta { display: none; }

    #51793
    omrani
    Member

    @sakin : j’ai essayé avec votre code css “footer.entry-meta { display: none; }” mais
    ça ne marche pas !

    #51818
    Sakin
    Keymaster

    @omrani: Can you send me your site URL then I can check in why it’s not working.

    #51883
    omrani
    Member

    salut !
    @sakin je travaille en locale et j’ai mis comme ça ” .entry-meta { display: none; }
    footer.entry-meta { display: none; }, mais la catégorie n’est pas disparait , estce que je peux modifier l’un des fichiers .php pour faire ça ?? merci )

    #51893
    Sakin
    Keymaster

    @omrani: Sorry I cannot check in without site being live.

Viewing 14 posts - 1 through 14 (of 14 total)
  • The topic ‘Enlever la date et le nom sur les articles’ is closed to new replies.