Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter mikeydep

    (@mikeydep)

    i think i found it…
    it’s in theme functions….
    hope this helps somebody else!

    Thread Starter mikeydep

    (@mikeydep)

    this is what is there…
    <?php if($theme->display(‘footer_widgets’)) { ?>
    <div id=”footer-widgets” class=”clearfix”>
    <?php
    /**
    * Footer Widget Areas. Manage the widgets from: wp-admin -> Appearance -> Widgets
    */
    ?>
    <div class=”footer-widget-box”>
    <?php
    if(!dynamic_sidebar(‘footer_1’)) {
    $theme->hook(‘footer_1’);
    }
    ?>
    </div>

    <div class=”footer-widget-box”>
    <?php
    if(!dynamic_sidebar(‘footer_2’)) {
    $theme->hook(‘footer_2’);
    }
    ?>
    </div>

    <div class=”footer-widget-box footer-widget-box-last”>
    <?php
    if(!dynamic_sidebar(‘footer_3’)) {
    $theme->hook(‘footer_3’);
    }
    ?>
    </div>

    </div>
    <?php } ?>

    but where it says to manage widgets from such and such area…there’s nothing in the box for widget area3

    Thread Starter mikeydep

    (@mikeydep)

    i got the theme free, and their site says i have to be a paid member to view forums…

Viewing 3 replies - 1 through 3 (of 3 total)