How to remove date, author, comments icon from blog everywhere
-
Dear Supporter,
According to this topic
https://xtemos.com/forums/topic/remove-date-author-comments-icon-from-blog-everywhere/#new-post
I add the CSS code to my Theme Setting > Custom CSS in the “Global custom CSS” area and save options to remove the date, author, and reply.
Please check those CSS codes below.
body .wd-entry-meta .meta-date {
display:none;
}
body .wd-entry-meta .meta-author {
display:none;
}
body .wd-entry-meta .meta-reply {
display:none;
}
But my blog post still has the Date shown on the Thumbnails, Main Picture, and the Single Post Page which still shows a “Leave a Comment” field on its below.
How to remove those from my blog post totally?
-
This topic was modified 3 years ago by
e911.tw.
Attachments:
You must be
logged in to view attached files.
Hello,
Please try to use the below code for hiding it.
.blog-post-loop .wd-post-date,
.single-post .wd-post-date {
display: none;
}
If there’s anything else we can do, please get in touch.
Kind Regards
Hi,
This CSS code hide the “date”, but how to hide the Single Post Page below “Leave a Comment” field?
Hello,
Please try to use the below one code for hiding the comments area. Paste it to the “Global Custom CSS” area in Theme Settings -> Custom CSS.
.single-post .comments-area {
display: none;
}
Kind Regards
Dear Supporter,
It works, Thank you.
You are welcome!
In case you need any additional help, I’d be more than happy to assist you.
Have a good day!
Kind Regards
The topic ‘How to remove date, author, comments icon from blog everywhere’ is closed to new replies.