Viewing 8 replies - 1 through 8 (of 8 total)
  • It is in your footer (php) that this code appears and created that monkey:

    <a target="_blank" href="https://cyberchimps.com/">
    <img alt="credit" src="https://onabih.ba/wp-content/themes/neuro/images/achimps.png"></a>

    Thread Starter nofire

    (@nofire)

    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>

    Thread Starter nofire

    (@nofire)

    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 https://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 https://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="https://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>
    Thread Starter nofire

    (@nofire)

    Which part I should delete?

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    This part:

    <a href="https://cyberchimps.com/">
     <img src="<?php echo get_template_directory_uri(); >/images/achimps.png" alt="credit" />
    </a>

    Thread Starter nofire

    (@nofire)

    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="https://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.

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Footer corrections’ is closed to new replies.