Fun Fact

If you have:

  1. A WordPress site, using a theme based on the Responsive parent theme
  2. The Sermon Manager sermon management plugin
  3. A sermon series called "none", for when your pastor preaches a sermon outside of a series

You then get...

An invisible sermon! Phantom sermon! The ghost of sermon present!

See, the default stylesheet for Responsive has this very handy class:

1
2
3
.none {
    display: none;
}

You set a class of none on an element and BAM! It's gone. Very handy.

Unfortunately, the Sermon Manager plugin assigns the sermon series' slug (in this case "none") as a class to its container, except on the archive page, so...

Voila!

Mar 26th, 2013

Comments