• I would like to remove categories, tags, dates and author name from my recent posts.
    As I use Yoast plugin I tried from there, also tried custom CSS code but nothing is making any difference.. I want an easy solution.

    The page I need help with: [log in to see the link]

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

    This can be achieved via Code in functions.php or you can even try that with CSS.

    Try using below CSS and see if that helps.

    span.comments-link, span.cat-links, span.byline, span.posted-on, span.tags-links {
        display: none !important;
        visibility: hidden;
    }

    Thanks.

    Hi @twinkle09 try adding this to costumizer

    p.meta.cat {display:none;}
    .meta-single .author {display:none;}
    .meta-single p.meta.date {
    margin-left: 0;
    }

    Reduce the padding on the post title with:

    .single .post-head {
    padding-bottom: 0;
    }

    And if you want to get rid of the whole meta section (author, date, etc.), use:

    .meta-single {
    display: none;
    }

    Regards,

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Not able to delete author name and date from posts’ is closed to new replies.