Hide categories/tags from post pages
- The topic ‘Hide categories/tags from post pages’ is closed to new replies.
Need help? Check out our Support site, then
Hi,
How do you hide the categories/tags from displaying on individual post pages (in the “byline”)?
I’ve tried every variation of this that I can think of:
article.post .post-meta ???, article.page .post-meta ??? {
display: none;
}
Thanks,
M
(I have CSS upgrade)
The blog I need help with is: (visible only to logged in users)
Hey M,
Try this:
.single .post-meta .post-category { display: none !important; }
Thanks!
Scott
Perfect, thanks!