• Hi there.. I am using a theme and it has footer widgets on the home screen footer.. It doesnt seem to be appearing in other pages though.. how would I go about fixing it..

    Coding that I see for the widget is

    <footer id=”footer”>
    <?php if (is_front_page()) { ?>
    <div id=”widget-footer” class=”clearfix”>
    <div class=”container_12 clearfix”>
    <?php if ( ! dynamic_sidebar( ‘Footer’ ) ) : ?>
    <!–Widgetized Footer–>
    <?php endif; ?>
    </div>
    </div><!–.container–>
    <?php } ?>
    <div id=”copyright” class=”clearfix”>
    <div id=”back-top-wrapper”>
    <p id=”back-top”>
    <span></span>
    </p>
    </div>

    The website link is https://www.terama.com.au

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi
    Prima facie it looks like it just mite be the case footer.php is just included in the homepage and not in other pages you need to just include that..

    Anur

    remove the conditoinal statement;

    i.e. remove line 2:
    <?php if (is_front_page()) { ?>

    and line 10:
    <?php } ?>

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Footer with Widgets not showing in all pages’ is closed to new replies.