Remove date and comments
-
I want that my site look like a webpage, not a blog, so i would like to remove de date of publication and the option of comments.
My theme is: Hatch
How can I do that?
Thank you
The blog I need help with is: (visible only to logged in users)
-
Hello there!
In order to remove the date stamps from your posts, please do the following:
- Click Appearance → Customize in your Dashboard.
- Click the CSS link in the right-hand menu.
- In the CSS Revisions box, please replace all existing brown-hued text with the following:
span.entry-date{
display: none;
} - Save your changes.
That should do it.
To disable comments from your posts, please follow these instructions:
en.support.wordpress.com/enable-disable-comments/I hope you find this helpful. Let me know if you have other questions. Cheers!
-
-
-
Sorry,
and to remove the author?(What i found in forums is always with code in php files, i don’t even know where these files are… )
Thank you!
-
Hello there!
To remove the author, paste the following below the text that you’ve already added to your CSS Revisions box:
.single .byline, .group-blog .byline {
display: none;
}And, in case you choose to hide the Category from your post as well, I thought I’d include that code:
.entry-date, .byline, .cat-links, .tags-links {
display: none;
}Ah yes, we don’t allow PHP code revisions on WordPress.com sites. In the future, if you’re looking for specific CSS assistance, you can check out our CSS forums:
https://en.forums.wordpress.com/forum/css-customizationPlease let me know if I can help with anything else!
-
-
- The topic ‘Remove date and comments’ is closed to new replies.