Site logo

Archived topic

hide entry-meta

11 replies · Started by Gulf State Software on January 4, 2018

Viewing posts 1–12 of 12

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 :)

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 :)

This archived topic is closed to new replies.