• Resolved Andrea Reed

    (@canadadre)


    Hi! Great theme and excellent support! Thanks!

    One more question… Client wants header logo and nav bar removed for one custom page. I get that I need to do something like this

    <?php if (!is_page('')) { ?>

    <?php } ?>

    However, I am a little unsure as your header structure is different than I am used to. Can you guide me in the right direction of the file that should be edited?

    Thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • You can do it in various way, e.g. not showing it simply with css. For example:

    .page-id-YOURPAGEID .tc-header {
    display: none;
    }

    But you can achieve that also via php in your child theme functions.php or in your custom page template (if you’re using one). Come back here, if you need.

    Thread Starter Andrea Reed

    (@canadadre)

    Ah yes. Thanks!!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Remove Header for Single Page’ is closed to new replies.