Remove date, Author and Category
-
I would like to modify my CSS to remove the info about date, Author and category. The tema I’m using is Hatch.
my blog is: mireiavila.wordpress.comThe blog I need help with is: (visible only to logged in users)
-
Hi there, in order to add custom CSS to remove those elements, you would need the Custom Design upgrade. You can see more about that at Store > Store in your admin dashboard.
You can try out and preview custom CSS before you buy as explained here. Go to Appearance > Customize > CSS, delete all the informational text in that window, and paste in the following custom CSS and you can preview the change.
.single .byline, .group-blog .byline, .entry-date, .cat-links, .tags-links { display: none; } -
Hi there!
Give a try to this code, will hide date, author and category from posts:
.entry-date, .entry-meta .byline, .cat-links { display: none; }If you want the tags hidden as well, use this instead:
.entry-date, .entry-meta .byline, .cat-links, .tags-links { display: none; } -
- The topic ‘Remove date, Author and Category’ is closed to new replies.