Hiding authors and dates on all posts

hello! i would like to hide all of the authors and dates on my posts. i am using pro and stack integrity.

Hi There @amandathiem

Thanks for writing in! I see that you only have Author and Dates currently. If you want to disable it, you can simply head over to X -> Theme Options -> Blog -> Content section and disable post meta.

Alternatively, you can also add the following CSS rule into your X -> Theme Options -> CSS area.

.single-post .p-meta > span:nth-child(1) {
    display: none;
}
.single-post .p-meta > span:nth-child(2) {
    display: none;
}

Hope that helps.

hello! neither one of these things have worked. this theme uses PRO if that helps?

Hello Amanda,

You should be able to disable the post meta info from the Theme Options settings just like previously instructed.

You may also try this code:

.single .p-meta {
    display: none;
}

Hope this helps.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.