Remove author, category, leave a comment

how to remove author, category, leave a comment from blog post top after title?
in short need to remove all meta except date. thanks

Hello Rachel,

Thanks for posting in! I am not sure which stack are you using. Please note that what you are trying to accomplish requires a template customization, we would highly to suggest that you use a child theme. This allows you to make code changes that won’t be overwritten when an X update is released. After your child theme is setup, please review how we recommend making template changes in Customization Best Practices.

And then to get your modifications done, kindly check out these old threads:
If you are using Ethos stack:

And if you are using Renew and other stacks:

Note: We are unable to provide support for customizations under our Support Policy. If you are unfamiliar with code and resolving potential conflicts, you may select our One or Care service for further assistance.

Best Regards.

surely a css trick should be able to hide those ? nothing to hide them except date?

Hello Rachel,

Thanks for writing to us.

Yes, you can hide it from the custom style. For that you need to add custom CSS under X/Pro—>Theme Option —>CSS

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

p.p-meta span:nth-child(2) {
display: block;
}
.p-meta>span:after {
display: none;
} 

The purpose of providing the custom CSS 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.

Hope it helps you.
Thanks

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