Tagged: blog meta elements
Hello
I have the same question as this fellow:
I can see that the admin area allows you to turn on and off various meta elements for single posts, however, all show up as default on the main news page where multiple posts are displayed. Here’s my very basic new working example:
Ideally, just the post date under the title would be fine, but the client may also want categories; please advise. Thank you in advance.
Hi!
The hiding may be doable with CSS, can you post a link to the mains news page you mention?
Regards,
Josue
Sorry, I had the links but they seemed ot have disappeared!
Here you go –
http://beta.pci-group.com/news/
And this is the single page where I have just the date meta – I’d like to be able to hide that last separator after the date, too if CSS can easily hide that?
http://beta.pci-group.com/mixed-use-projects-near-transit-benefit-everyone-developers-say/
Thanks, Josue! :)
Hey!
Try adding this code to the Quick CSS:
.single span.text-sep.text-sep-date {
display: none;
}
Cheers!
Josue
That worked perfectly for the single post page – thank you!
Now all I need is the CSS to remove the comments, categories and author on the main blog page, please :)
Hi!
Try:
.blog span.post-meta-infos * {
display: none;
}
.blog span.post-meta-infos time{
display: block;
}
Cheers!
Josue
Beautiful! Worked like a charm; thanks so much, Josue!
You are welcome, always glad to help :)
Regards,
Josue