Remove category and author in posts

I need some assistance removing the category and author from the posts. I am assuming it has something to do with the meta span, but cannot figure out the correct CSS code. I would appreciate any assitance you can render.

Hi @PhotographerPC,

Thanks for reaching out.
It seems that the Post Meta option is enabled, you need to disable it from Theme Options > Blog > Content > Post Meta as shown in the given screenshot.

Hope it helps.
Thanks

So your solution did remove all the meta data when Post-Meta was toggled off. However, this is not what I want. I only want the date of the post the number of comments to show. I do not want the category and author to show. Is there CSS code to achieve this. I am under the assumption the Post-Meta would need to be toggled to the on position to show these two items, correct?

Thank you for the clarification.

You can add this css in the Custom Code > Global CSS field to hide the author and category meta info:

.p-meta span:nth-child(1), .p-meta span:nth-child(3) {
	display: none;
}

Please check out our One service if you need more assistance with this type of modification.

Best regards.

Thank you Ismael. Much appreciated. I will look into the One service.

No problem. Let us know if you have more questions. Have a nice day.

I guess I did have another question Isaeal. The CSS code provided worked but only left the entry date. I would like the Leave a comment link to show as well.

We may need to see the post in order to provide the appropriate modification. Please provide the site URL in the secure note.

Hello @PhotographerPC,

Thanks for sharing the page URL, I would suggest you please update your previous CSS code with the given CSS code. It would hide only the post author’s name.

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

The purpose of providing custom CSS is to show you how to add CSS code to your site. Writing custom CSS is outside the scope of our theme support. If you need more customization, you need to learn CSS and learn how to use the browser’s element inspector.In case if you have no idea about coding you can subscribe to One where customization questions are answered.

Hope it helps.
Thanks

Thank you Prakash. I do use both of the customization CSS tools and have written many of the codes to date. I only reach out when needed if I am stuck or things don’t work as intended. I appreciate your help.

You are most welcome @PhotographerPC

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