Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter rratcliffe

    (@rratcliffe)

    Here is the whole code in the footer.php

    <?php
    global $themeple_config;

    wp_reset_postdata();
    $social_icons = themeple_get_option(‘social_icons’);

    ?>
    Scroll
    <!– Social Profiles –>

    <!– Footer –>
    </div>

    <div class=”footer_wrapper”>

    <footer id=”footer” class=”type_<?php echo themeple_get_option(‘footer_skin’) ?>”>

    <div class=”inner”>
    <div class=”container”>
    <div class=”row-fluid ff”>

    <!– widget –>
    <?php

    $columns = themeple_get_option(‘footer_number_columns’);
    for($i = 1; $i <= $columns; $i++){
    ?>
    <div class=”span<?php echo 12/$columns ?>”>

    <?php if (function_exists(‘dynamic_sidebar’) && dynamic_sidebar(‘Footer – column’.$i) ) : else : echo “<div class=’widget’>Add Widget Column $i</div>”; endif; ?>

    </div>

    <?php
    }

    ?>

    </div>
    </div>
    </div>

    <div id=”copyright”>
    <div class=”container”>
    <div class=”row-fluid”>
    <div class=”span12 desc”><?php echo themeple_get_option(‘footer_cp’); ?></div>

    </div>
    </div>
    </div><!– #copyright –>

    </footer><!– #footer –>
    </div>

    <?php $layout = themeple_get_option(‘overall_layout’); if($layout == ‘boxed’): ?>
    </div>

    <?php endif; ?>
    <?php
    wp_footer();
    ?>
    </body>
    </html>

    Thread Starter rratcliffe

    (@rratcliffe)

    yes I did as well and same error comes up:
    “Fatal error: Call to undefined function DISPLAY_ULTIMATE_PLUS() in /home/…”

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