Changing Footer
-
Hey guys and gals
I have started to create a site for my partner, its the first time i done an website building and i don`t no any code.
Im using the Nature One theme and have created a child of it, theres a section in the footer – contact us and testimonies, it appears on every page and i don`t want it there at all, is there a way to remove it here is the code please help.
<?php /** * The template for displaying the footer. * * Contains the closing of the #content div and all content after * * @package SKT Nature One */ ?> <div id="footer"> <div class="footer-top"> <div class="middle-align"> <div class="footer-column"><h3><?php _e('','nature-one'); ?></h3> <?php if( of_get_option('footertext', true) != '') { if(of_get_option('footertext',true) == 1) { _e('Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur egestas ornare elit ut molestie. Phasellus posuere interdum tellus, sit amet interdum lectus rutrum at. Nunc suscipit erat ut eros consequat, at bibendum sapien convallis. Donec ut gravida velit. Curabitur non ultrices lorem. Quisque aliquet leo felis, vitae posuere purus blandit vitae. Fusce vitae tincidunt enim, in efficitur justo. Morbi euismod orci non magna malesuada commodo.','nature-one'); } else { echo esc_html(of_get_option('footertext', true)); } }; ?> </div><!-- footer-column --> <div class="footer-column" style="margin-right:0;"><h3><?php _e('','nature-one'); ?></h3> <blockquote> <?php if(of_get_option('testtext',true) != 1){ echo esc_html(of_get_option('testtext', true)); } else { ?> <?php _e('Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur egestas ornare elit ut molestie. Phasellus posuere interdum tellus, sit amet interdum lectus rutrum at. Nunc suscipit erat ut eros consequat, at bibendum sapien convallis. Donec ut gravida velit. Curabitur non ultrices lorem. Quisque aliquet leo felis, vitae posuere purus blandit vitae.','nature-one'); ?> <?php } ?> </blockquote> </div><!-- footer-column --><div class="clear"></div> </div><!-- middle-align --> </div><!-- footer-top --> <div class="footer-bottom"> <div class="footer-inner middle-align"> <div class="footer-bottom-left"> <?php wp_nav_menu( array('theme_location' => 'footer') ); ?> <?php if( of_get_option('copytext',true) != 1) { echo esc_html(of_get_option('copytext', true)); } else { _e(' Copyright 2014 All Rights Reserved to Nature One ','nature-one'); } ; ?> </div><!-- footer-bottom-left --> <div class="footer-bottom-right"> </div><!-- footer-bottom-right --><div class="clear"></div> </div><!-- footer-inner --> </div><!-- footer-bottom --> </div><!-- footer --> </div><!-- main-container --> <?php wp_footer(); ?> </body> </html>
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
The topic ‘Changing Footer’ is closed to new replies.