How do I turn off metadata for post subheadings?

Under each of my post titles, the following metadata is showing:

  • Categories
  • Author
  • Date
  • Leave a Comment

How can I turn this off?

Hi Irena,

Thanks for writing in! Simply head over to X -> Theme Options -> Blog -> Content and disable Post meta option to remove those meta section.

Hope that helps.

Thanks! That worked! I had actually tried this, but the refresh didn’t show the change, until I actually saved it and re-opened it.

Is there a way just to show the date? Or is it only an all or nothing toggle?

Thanks,
Irena

Hi There,

Is no other way to toggle the individual item in a meta tag. How ever you can you custom CSS for that.
You can see in the screenshot all the elements are in a separate HTML tag which is “span”.

You can hide any child span via CSS. First, you have to decide which elements you need to hide and according to that you can write the custom CSS in Theme option -> Global CSS.

Example CSS.

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

This CSS would hide the second span of the meta element, which is Date here.
Read about child element selector here. https://www.w3schools.com/CSSref/sel_nth-child.asp
How to use Chrome developer tool: https://www.youtube.com/watch?v=FQKvro1Wz-E

Hope this helps!

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