Accidentally deleted footer code for evolve theme
-
Hello, I was trying to get rid of the default wordpress footer and deleted some code, thinking that I could just paste it back in if it didn’t do what I wanted it too. Needless to say, I must be pasting it back in incorrectly because after putting it back in I get this message in the footer section of the site:
Parse error: syntax error, unexpected ‘<‘ in /home3/crossterrain/public_html/wp-content/themes/evolve/footer.php on line 64
This is what my code looks like currently:
</div>
<div class=”<?php echo $evolve_footer_css; ?>”>
<?php if ( !dynamic_sidebar( ‘footer-4’ ) ) : ?>
<?php endif; ?>
</div>
</div>
<?php } ?>
<div class=”clearfix”></div>
if ($footer_content === false) $footer_content = ”;
echo do_shortcode($footer_content);
?>
<!– Theme Hook –>
<?php evolve_footer_hooks(); ?>
<!–END .container–>
</div>
<?php $footer_content = evolve_get_option(‘evl_footer_content’,'<p id=\”copyright\”>
<span class=\”credits\”><a href=\”https://theme4press.com/evolve-multipurpose-wordpress-
theme/\”>evolve theme by Theme4Press • Powered by <a
href=\”https://www.remarpro.com\”>WordPress</span></p>’); <!–END .footer–>
</div>
<!–END body–>
<?php $evolve_pos_button = evolve_get_option(‘evl_pos_button’,’right’);
if ($evolve_pos_button == “disable” || $evolve_pos_button == “”) { ?>
<?php } else { ?>
<div id=”backtotop”></div>
<?php } ?>
<?php $evolve_custom_background = evolve_get_option(‘evl_custom_background’,’0′); if ($evolve_custom_background == “1”) { ?>
</div>
<?php } ?>
<?php wp_footer(); ?>
</body>
<!–END html(kthxbye)–>
</html>Could someone please help show my what it SHOULD look like? If you could show me what it should look like without the powered by wordpress etc defaults in there that would also be great!
Thanks!
- The topic ‘Accidentally deleted footer code for evolve theme’ is closed to new replies.