• Resolved jacquet

    (@jacquet)


    I would like to remove the Author, Date and Category from all posts in my virtue theme.
    I go to the index.php file but the only thing I can find is

    “<?php
    // Silence is golden.
    ?>”

    Thank you for helping me !

Viewing 5 replies - 1 through 5 (of 5 total)
  • Hello,

    Please open content.php file and remove this part then solved your problem.

    ( something line number 29 )
    ————————————

    <div class=”entry-meta”>
    <?php twentythirteen_entry_meta(); ?>
    <?php edit_post_link( __( ‘Edit’, ‘twentythirteen’ ), ‘<span class=”edit-link”>’, ‘</span>’ ); ?>
    </div><!– .entry-meta –>

    ————————————

    Thanks,

    No! Do not edit the theme itself. First create a child theme for your changes. Then make changes in the child theme only.

    My recommendation is simply to hide them with css: you can use the following in your custom css box in the theme options > advanced settings.

    .postdate, .kad-hidedate, .postdatetooltip{display:none;}
    .subhead .postedintop, .kad-hidepostedin {display:none;}
    .kad-hidepostauthortop, .postauthortop {display:none;}

    Kadence Themes

    Thread Starter jacquet

    (@jacquet)

    Thank you for all your answers !
    I finally went in the theme options and it works.

    thank you !
    I am such a beginner…

    Thread Starter jacquet

    (@jacquet)

    resolved…

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Remove Date author category from posts’ is closed to new replies.