Hello,
I added this in the Custom CSS:
.single-post .entry-title {
display: none;
}
But that only removed the title, I want to remove the meta information and white space (Integrity)
Can you help me?
Kind regard,
Frank
Hello,
I added this in the Custom CSS:
.single-post .entry-title {
display: none;
}
But that only removed the title, I want to remove the meta information and white space (Integrity)
Can you help me?
Kind regard,
Frank
Hi Frank,
Thank you for reaching out to us. To turn off the post meta, navigate to Theme Options > Blog > Content > Post Meta and turn it Off (see screenshot)

Hope this helps!
Hi Nabeel,
Thanks for the reply. But I meant to get rid of this header as I want to build my own:

Kind regards,
Frank
Hey Frank,
If hiding with CSS is ok for you, you can target the entry-header which houses both the entry title and post meta. The code should look like this.
.single-post .entry-header {
display:none;
}
If you know PHP, it would be best though that you remove the HTML output altogether so that it will not harm your SEO. That can be done by overriding the _content-post-header.php file which you can find in \wp-content\themes\x\framework\views\ethos. You can read the instruction to override a template here: https://theme.co/docs/best-practices
If you’re not familiar with PHP, you can pass that instruction to a web developer.
Hope that helps.
Thanks, that worked !
You’re most welcome, Frank.
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.