Tagged: footer hacked?
Footer not showing
-
CreatorTopic
-
February 4, 2016 at 4:50 pm #24901
vtourville
ParticipantDue to a hack my footer was eliminated any suggestions on how to get the footer back? Here is the current code???
<?php
/**
* The template for displaying the footer.
*
* WARNING: This template file is a core part of the
* Theme Blvd WordPress Framework. It is advised
* that any edits to the way this file displays its
* content be done with via hooks, filters, and
* template parts.
*
* @author Jason Bobich
* @copyright Copyright (c) Jason Bobich
* @link http://jasonbobich.com
* @link http://themeblvd.com
* @package Theme Blvd WordPress Framework
*/// End main area
themeblvd_main_bottom();
themeblvd_main_end();// Featured area (below)
if ( themeblvd_config( ‘featured_below’ ) ) {
themeblvd_featured_below_start();
themeblvd_featured_below();
themeblvd_featured_below_end();
}themeblvd_footer_before();
?>
<!– FOOTER (start) –><div id=”bottom”>
<footer id=”colophon” role=”contentinfo”>
<div class=”colophon-inner”>
<?php
/**
* Display footer elements.
*/
themeblvd_footer_above();
themeblvd_footer_content();
themeblvd_footer_sub_content();
themeblvd_footer_below();</div><!– .content (end) –>
</footer><!– #colophon (end) –>
</div><!– #bottom (end) –><!– FOOTER (end) –>
<?php themeblvd_footer_after(); ?>
</div><!– #wrapper (end) –>
<?php themeblvd_after(); ?>
<?php wp_footer(); ?>
</body>
</html> -
CreatorTopic
-
AuthorReplies
-
February 4, 2016 at 6:30 pm #24902
Jason Bobich
KeymasterHi,
Apologies, I’m not sure I understand the issue. What is missing from your footer? I’m not sure why you’re showing me the default footer.php file?
February 4, 2016 at 7:44 pm #24903Jason Bobich
KeymasterOr do you mean the entire footer on your site isn’t showing at all? Maybe you could post a link to your site so I can see what you mean?
February 5, 2016 at 3:51 pm #24918vtourville
ParticipantFebruary 5, 2016 at 8:33 pm #24929Jason Bobich
KeymasterAre you totally sure that footer.php file exists in
arcadian2
theme directory? Looking at your site, it would suggest that either the file doesn’t exist in the proper location or that there’s something at top of the file causing a fatal error.The only reason there could be a fatal error generated in the footer (assuming it’s intact and looks how you pasted above) is if you had some sort of malicious code that was specifically hooked to one of the actions in our footer.php from outside the file. To diagnose if that is what’s happening, you can turn on
WP_DEBUG
.https://codex.wordpress.org/Debugging_in_WordPress#WP_DEBUG
If there is no fatal error printed on the bottom of the screen where the footer should be, after turning on WP_DEBUG, it suggests some kind of issue with footer.php not being present, or it being blocked or disabled somehow on your server.
Are you sure you’re not getting directories of these themes mixed up? Meaning
arcadian
vsarcadian2
vs whatever else?Also, you mentioned that all this happenned because the original footer.php had something hacked into it? Is it possible your host has somehow disabled the footer.php file from being used as a previous safety measure?
-
AuthorReplies
- The forum ‘The Arcadian Responsive WordPress Theme’ is closed to new topics and replies.