Make header image show on

5.13K viewsThemes
0

How do I make the homepage header and users statistics visible on my custom “About US” page as it shown on the askbug theme homepage.

Question is closed for new answers.
unselected answer
0

Override header.php in child theme and copy everything. and edit line 109 if condition:

<?php if ( is_active_sidebar( ‘stats’ ) && is_front_page() ) : ?>
To:

<?php if ( ( is_active_sidebar( ‘stats’ ) && is_front_page() ) || is_page( ‘about’ ) ) : ?>

You are viewing 1 out of 2 answers, click here to view all answers.