Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author xnau webdesign

    (@xnau)

    If you look at the HTML, you’ll see that the wrapping element of the empty field has a class of “blank-field” so you can just use a CSS rule to not display those elements:

    .blank-field {
       display: none;
    }

    That may or may not work on your site…that’s just the general idea.

    Thread Starter neonerve

    (@neonerve)

    Perfecto!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘single page hide when no value’ is closed to new replies.