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.
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
but it did remove comments from the actual 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!