Footer problems, probably simple to solve
-
Currently I’m reconstructing my blog with a static front page, and I have finally found a theme I was reasonably happy with and have been creating a child theme from it. All is going well, but…
If you visit the under-construction site (https://www.jimross.co.uk/blog) then it includes some daft ads in the very footer for various things. I cannot for the life of me figure out how to get rid of them. I have tried editing the footer.php but it usually just screws it up. CSS I can cope with but I have no idea with PHP. How do I remove this gubbins?
Current footer.php contents:
<div class="clear"></div> </div> </div> <?php get_sidebar('foot'); ?> <div id="footer"> <div id="footer-pad" class="append-clear"> <p class="copyright"> <?php echo sprintf(__('Copyright © %1$s. %2$s. All rights reserved.', PADD_THEME_SLUG), date('Y'), get_bloginfo('name')); ?> </p> <?php padd_theme_credits(); ?> <div class="clear"></div> </div> </div> </div> </div> <?php wp_footer(); ?> <?php $tracker = Padd_Theme_Option::get('tracker_bot',''); if (!empty($tracker)) { echo stripslashes($tracker); } ?> </body> </html>
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘Footer problems, probably simple to solve’ is closed to new replies.