Remove Author, Date & Add Comments from Blog Post Meta

How do I remove the credits for Author, the date posted, the tags and the “Add Comment” that appears underneath the title on each post?

Hello @FasteddieB,

Thanks for asking. :slight_smile:

You can add following CSS to remove post meta information:

.p-meta {display: none;}

Thanks.

Is there a way to remove only the credits for Author?

I tried this code took from another post of the forum, but it didn’t work for me.

span.entry-cover-author {
display: none !important;
}

I’ve got Pro Theme.
Thanks!

Hello @skated,

To remove the credits for the author, please apply the following custom CSS code in Customize --> Custom --> Global CSS:

.p-meta > span:first-child {
    display: none;
}

I hope this helps.

1 Like

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.