Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter alistonku

    (@alistonku)

    I should note I am using Squirrel theme..

    Open up the themes footer.php file

    find this section of code:

    <div class="footer_bottom_inner">
                <?php if (squirrel_get_option('squirrel_cright') != '') { ?>
                    <span class="copyright"><?php echo squirrel_get_option('squirrel_cright'); ?></span>
                <?php } else { ?>
                    <span class="copyright"><a href="<?php echo esc_url( __( 'http://www.inkthemes.com/', 'squirrel' ) ); ?>"><?php _e( 'Squirrel Designed & Coded by InkThemes.com', 'squirrel' ); ?></a></span>
                <?php } ?>
            </div>

    Make it look like this:

    <div class="footer_bottom_inner">
                    Text I want here.
            </div>
    Thread Starter alistonku

    (@alistonku)

    That worked great, thank you! I am still trying to figure out how to change the text in blue above that section in blue (contact details, other useful links, recent from blog). Any idea where I can change that?

    Once again thanks for the help!

    Thread Starter alistonku

    (@alistonku)

    I think I need to edit the Squirrel: sidebar-footer.php

    However I am not sure what to delete to just have the box be blank

    here is the code:

    <?php
    /**
     * The Footer widget areas.
     *
     * @package WordPress
     */
    ?>
    	<div class="grid_8 alpha">
              <div class="widget_inner">
    		  <?php if (is_active_sidebar('first-footer-widget-area')) : ?>
                <?php dynamic_sidebar('first-footer-widget-area'); ?>
            <?php else : ?>
                <h4><?php _e('Contact Details','squirrel'); ?></h4>
                <?php _e('Address: FM-9, B-Block,  Second Complex, Bhopal
                Contact No : +91-9926465653
                Website: <a href="#">http://inkthemes.com</a>
                Email-id: <a href="#">admin@inkthemes.com</a>','squirrel'); ?>
    			<?php endif; ?>
              </div>
            </div>
            <div class="grid_8">
              <div class="widget_inner">
    		  <?php if (is_active_sidebar('second-footer-widget-area')) : ?>
                <?php dynamic_sidebar('second-footer-widget-area'); ?>
            <?php else : ?>
                <h4><?php _e('Other Useful Links','squirrel'); ?></h4>
    
    <ul>
    <li> <a href="#"><?php _e('WordPress Development Blog','squirrel'); ?></a></li>
    <li> <a href="#"><?php _e('Developer Documentation','squirrel'); ?></a></li>
    <li> <a href="#"><?php _e('Reporting Bugs','squirrel'); ?></a></li>
    <li> <a href="#"><?php _e('WordPress Development Blog','squirrel'); ?></a></li>
    <li> <a href="#"><?php _e('Developer Documentation','squirrel'); ?></a></li>
    <li> <a href="#"><?php _e('Reporting Bugs','squirrel'); ?></a></li>
    </ul>
    			<?php endif; ?>
              </div>
            </div>
            <div class="grid_8 omega">
              <div class="widget_inner last">
    		   <?php if (is_active_sidebar('third-footer-widget-area')) : ?>
                <?php dynamic_sidebar('third-footer-widget-area'); ?>
            <?php else : ?>
                <h4><?php _e('Recent From Blog','squirrel'); ?></h4>
                <p><?php _e('Qarius dui, quis posuere nibh ollis quis. Mauris omma rhoncus rttitor. <a href="#">http://wordpress.org</a>','squirrel'); ?></p>
                <p><?php _e('Qarius dui, quis posuere nibh ollis quis. Mauris omma rhoncus rttitor. <a href="#">http://wordpress.com</a>','squirrel'); ?></p>
    			<?php endif; ?>
              </div>
            </div>
            <!--End Footer-->
            <div class="clear"></div>
            <!--Start Footer bottom-->
Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Removing bottom text from theme’ is closed to new replies.