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>