• Resolved magentawave

    (@magentawave)


    My header is only appearing on the front/home page but I want it to also appear on the About, Contact, Privacy, etc. pages too. How can I do that?

    Thanks

Viewing 2 replies - 1 through 2 (of 2 total)
  • Theme Author Pawe?

    (@mrpauloen)

    In header.php on line 17.

    There is a condition:

    if ( get_custom_header()->url != null && ( is_home() or is_front_page() ) )

    Just remove:

    && ( is_home() or is_front_page() )

    or just add some own between the inner brackets:

    ( is_home() or is_front_page() or is_page() )

    In future I will add this to the Customizer.

    Cheers

    Thread Starter magentawave

    (@magentawave)

    Thank you!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How can I make header appear on every page of my site?’ is closed to new replies.