How to remove date and author information on page?

Hi there,

May I know how to remove date of posting and author information on Page? I just want the date and author information on Post.

Thank you.

Hi there,

Pages do not have those items on them.
Do you mean posts?
If so then use this CSS to remove data and author name on posts pages:

body.single.single-post .post-content .post-meta{
    display:none;
}

Hope this helps and if not then give us a link to the page where this is to adjust the code for that page.

Hi there,

Thank you for your reply. That was what I thought that pages should not have those items. Have a look at the website that I am construction :

http://www.iamcarolinepang.com/who-am-i/
and
http://www.iamcarolinepang.com/contact-me/

Those are pages and it has the date and the author info on it.

Hi there

Use this css and date and author will disappear from everywhere:

.entry-meta {
display: none;
}

Hi

I do not want date and author to disappear from post, just to disappear from page. Is there any way to do that? Thanks!

Hi,

Please add this Custom CSS in Appearance -> Customize -> Additional CSS,

.page .entry-meta {
    display: none;
}

Let us know,

Thanks,
laranz.

Is it possible to set it for only one specific page?

Yes, its possible, in this case you need to add page id to the CSS selector

.page-id-XX .entry-meta {
    display: none;
}

thanyk you for your answer

Thank you too :slight_smile:

Have a nice day