Please Help! Using SpicePress Theme
-
Please help me with this SpicePress theme. The theme got messed up when I try to change the footer.
Below are the codes for the “Theme Footer” section. Thank you!
<?php
/**
* Template file for footer area
*/
$spicepress_footer_copyright = get_theme_mod(‘footer_copyright_text’,'<p>’.__( ‘Proudly powered by WordPress | Theme: SpicePress by SpiceThemes’, ‘spicepress’ ).'</p>’);
?>
<!– Footer Section –>
<?php if ( is_active_sidebar( ‘footer_widget_area_left’ ) || is_active_sidebar( ‘footer_widget_area_center’ ) || is_active_sidebar( ‘footer_widget_area_right’ ) || ($spicepress_footer_copyright != null) ) : ?>
<footer class=”site-footer”>
<div class=”container”>
<?php get_template_part(‘sidebar’,’footer’);
if($spicepress_footer_copyright != null): ?>
<div class=”row”>
<div class=”col-md-12″>
<?php
$spicepress_user=get_option(‘spicepress_user_with_1_9_1′);
if($spicepress_user=’old’){ ?>
<div class=”site-info wow fadeIn animated” data-wow-delay=”0.4s”>
<?php echo wp_kses_post($spicepress_footer_copyright); ?>
</div>
<?php }else{?>
<div class=”site-info wow fadeIn animated” data-wow-delay=”0.4s”>
<p><?php esc_html_e( ‘Proudly powered by’, ‘spicepress’ ); ?> “><?php esc_html_e( ‘WordPress’, ‘spicepress’ ); ?> <?php esc_html_e( ‘| Theme:’, ‘spicepress’ ); ?> ” rel=”nofollow”> <?php esc_html_e( ‘SpicePress’, ‘spicepress’ ); ?> <?php esc_html_e( ‘by SpiceThemes’, ‘spicepress’ );?></p>
</div>
<?php } ?>
</div>
</div>
<?php endif; ?>
</div>
</footer>
<?php endif; ?>
<!– /Footer Section –>
<div class=”clearfix”></div>
</div>
<!–Close of wrapper–>
<!–Scroll To Top–>
<i class=”fa fa-chevron-up”></i>
<!–/Scroll To Top–>
<?php wp_footer(); ?>
</body>
</html>
- The topic ‘Please Help! Using SpicePress Theme’ is closed to new replies.