Reply To: Disable Elements not working on Blog Page

Home Forums Support Disable Elements not working on Blog Page Reply To: Disable Elements not working on Blog Page

Home Forums Support Disable Elements not working on Blog Page Reply To: Disable Elements not working on Blog Page

#103056
Tom
Lead Developer
Lead Developer

Hi Martin,

WordPress ignores any metabox values on the page set as the blog, so we need to use CSS instead.

Header:

.blog .site-header,
.archive .site-header {
      display: none;
}

Footer:

.blog .site-footer,
.archive .site-footer {
      display: none;
}

As for “Headline”, are you wanting to hide the blog post titles?