Archived topic
hide entry-meta
11 replies · Started by Gulf State Software on January 4, 2018
Need to hide publish date, I tried flowing but not working...
.entry-meta {
display: block;
display:none;
}
example page is : https://www.gulfstatesoftware.com/software-development-company-new-york.html
Hi there,
Looks like you got it working?
Anyways the options should be in the customizer now: https://docs.generatepress.com/article/blog-content-layout/
It's working now....My "GP Premium" post wasn't activate.
----🏍🚲🛴
Glad it's working!
Is there any possibility to remove it from specific posts ...
For example if I have posted 3 articles, and I want only 1 article to not to show entry meta, any possibility for that?
We can use CSS to do that.
Can you link me to the post in question?
Feel free to open a new topic so you can use the private URL field.
Let me know :)
I am writing a new post in which I don't want the entry meta to be shown...
but for this forum, just say
https://wheelsmaestro.com/obd2-scanners/
https://wheelsmaestro.com/dash-cams/
I have these 2 posts... I want the entry meta to be shown in the first one but not in the second one, what is the procedure?
You can target that post with CSS like this:
body.postid-1396 .entry-meta {
display: none;
}
Let me know if this helps :)
Hi Leo,
I'm trying to do the same, hide the meta info on my about page (not post)
I added the CSS you mentioned above (with the relevant page ID) to the CSS editor but it didn't work.
body.postid-614 .entry-meta {
display: none;
}
What am I missing?
Thanks!
Try this instead:
body.page-id-614 .entry-meta {
display: none;
}
Works! Thanks!
No problem :)