Hide Author/Comments on Posts

I would like to hide the Author and Comments tags on the both the posts listing pages and the individual posts pages. The calendar/date is ok.
Blog post

Hello @sdex,

Try using this CSS solution to hide this elements:

.post-meta-author,
.post-meta-comments{
display: none !important;
} 

This code should be placed in a child’s theme stylesheet.css, ideally.
But you can use a Custom CSS plugin or place it inside Dashboard > Appearances > Editor > Style.css but keep in mind that this will get erased if you update the theme.

Let me know if it’s working alright.

Regards

It’s still showing on the listing of all the blogs page
Post Listings

but it did remove comments from the actual post page

Post Page

Hello,

Add this additional code and let me know if it did the trick:

.meta-comments,
#blog .blog-post .blog-post-meta .post-meta-author{
display: none !important;
}
#blog .blog-post .blog-post-meta .post-meta-time{
margin-left: 0 !important;
}

If this is not working, please provide the website link.

Regards

WORKED!!! YOU ARE AWESOME!

Hello @sdex,

That’s great news, glad that we worked it out.

Regards

Hello @sdex,

That’s great news, glad that we worked it out.

Regards