Footer corrections
-
Hi!
This is my website: http://www.onabih.baCan I do something, so this money icon π on the bottom isn’t showed?
-
It is in your footer (php) that this code appears and created that monkey:
<a target="_blank" href="http://cyberchimps.com/"> <img alt="credit" src="http://onabih.ba/wp-content/themes/neuro/images/achimps.png"></a>So I just delete this whole code that you wrote? Or just the links?
To delete the CyberChimps image and link to cyberchimps website, remove everything Krishna indicated beginning with
<a ... and ending with ... /a>This is how it looks in footer.php
[ Moderator Note: Please post code or markup snippets between backticks or use the code button. ]
<?php /** * Footer template used by Neuro. * * Authors: Tyler Cunningham, Trent Lapinski * Copyright: Β© 2012 * {@link http://cyberchimps.com/ CyberChimps LLC} * * Released under the terms of the GNU General Public License. * You should have received a copy of the GNU General Public License, * along with this software. In the main directory, see: /licensing/ * If not, see: {@link http://www.gnu.org/licenses/}. * * @package Neuro. * @since 2.0 */ global $options, $ne_themeslug // call globals ?> <!-- For sticky footer --> <div class="push"></div> </div> <!-- End of wrapper --> <?php if ($options->get($ne_themeslug.'_disable_footer') != "0"):?> </div><!--end container wrap--> <div class="footer"> <!-- Footer class for sticky footer --> <div id="footer" class="container"> <div class="row" id="footer_container"> <div id="footer_wrap"> <!-- Begin @response footer hook content--> <?php response_footer(); ?> <!-- End @response footer hook content--> </div> <div class="row" > <div id="credit" class="twelve columns"> <a href="http://cyberchimps.com/"><img src="<?php echo get_template_directory_uri(); ?>/images/achimps.png" alt="credit" /></a> </div> </div> <?php endif;?> </div><!--end footer_wrap--> </div><!--end footer--> <?php if ($options->get($ne_themeslug.'_disable_afterfooter') != "0"):?> <div id="afterfooter" class="container"> <div class="row" id="afterfooterwrap"> <!-- Begin @response afterfooter hook content--> <?php response_secondary_footer(); ?> <!-- End @response afterfooter hook content--> </div> <!--end afterfooter--> </div> <?php endif;?> <?php wp_footer(); ?> </div> <!--End of footer class for sticky footer --> </body> </html>Which part I should delete?
This part:
<a href="http://cyberchimps.com/"> <img src="<?php echo get_template_directory_uri(); >/images/achimps.png" alt="credit" /> </a>Thanks! That worked.
This part displays the CyberChimps image
<img src="<?php echo get_template_directory_uri(); ?>/images/achimps.png" alt="credit" />Or you can remove the entire div used to hold the image:
<div class="row" > <div id="credit" class="twelve columns"> <a href="http://cyberchimps.com/"><img src="<?php echo get_template_directory_uri(); >/images/achimps.png" alt="credit" /></a> </div> </div>** Be aware that any changes you make to the theme will be overwritten if the theme is updated. Take a look at creating a child theme in order to preserve your changes.
The topic ‘Footer corrections’ is closed to new replies.