In general, the Page header is not displayed in Homepage. In case you want to display it in homepage, here are all of the necessary steps:
1. Login to Admin Panel -> Left Menu -> Appearance -> Editor
2. Open front-page.php
Below:
<?php $displaySidebar = tishonator_display_sidebar_in_homepage(); ?>
Insert the following code:
<?php tishonator_show_page_header_section(); ?>
Then save changes.
3. Open content.php file.
Replace
<?php if ( !is_single() ) :
with
<?php if ( !is_single() && !is_front_page() ) :
Then save changes.
That’s all. Now, the page header will displayed in your website homepage.
Can we also remove the Page Footer as well?
Hi Randy,
1. Navigate to Admin Panel -> Left Menu -> Appearance -> Theme Editor
2. Open footer.php
3. Delete code between:
<footer id=”footer-main”>
and
</footer><!– #footer-main –>
4. Save changes
Thanks,
Tihomir
Tishonator Team