How to hide meta in Related Posts
-
Topic
-
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- You must be logged in to reply to this topic.
This is searchable archive of our old support forums, which operated from 2012 - 2016. To find out how to get support for your current theme, please visit our support page.
Tagged: hide meta, related posts
Hello,
I would like to hide all meta info in my ‘Related posts’ field. Unlike for the Single post, this is not possible to achieve from Theme Options (as far as I know), so please, instruct me how to do that.
I have tried this in my style.css:
.entry-meta{ display:none; }
and it works but I’m not sure if this will affect some other region?
Maybe you cold add this option in the Single post options field – Related posts section? Just a suggestion…
Thank you very much!
Hi Nikola,
There’s no exact right or wrong answer here. You’d just use your inspector to find a class you can use on one of the parent elements of specifically the related posts section, in order to make your selector more specific.
For example:
.tb-mini-post-list .entry-meta { display: none; }
Got it! Thanks!