• Good morning Richie,
    i want to remove footer widget from the single the posts. but when i removed php get footer from the single.php
    it did the work i wanted but another problem is occurring. the primary menu navigation is not alligning. i mean to say they are showing in bulleted style not in button style.
    Please have a look at this problem.
    techgeekers.com

Viewing 1 replies (of 1 total)
  • Theme Author Richie KS

    (@rkcorp)

    do not remove the_footer(); from single.php
    just open footer.php and add the conditional code where the area you do not want to show like this

    <?php if( !is_single() ) { ?>
    <footer class="footer-top">
    ===== the other code =======
    </footer>
    <footer class="footer-bottom">
    ===== the other code =======
    </footer>
    <?php } ?>
Viewing 1 replies (of 1 total)
  • The topic ‘removing of footer from the single post’ is closed to new replies.