• Resolved littlerobot

    (@littlerobot)


    Hi, I want to remove the footer from my website (www.little-robot.co.uk) which says
    “Powered by WordPress · Theme by DinevThemes”

    I have tried looking in the footer.php file but it doesn’t seem to be there. I’ll copy and paste the footer.php code below.

    Any help is much appreciated.

    Thanks

    <?php
    /**
    * The template for displaying the footer.
    * @package Squarex
    */
    ?>

    </div><!– #content –>
    </div><!–#wrap-content–>

    <div class=”clearfix”></div>

    <div class=”out-wrap site-footer”>

    <footer id=”colophon” class=”wrap site-footer” role=”contentinfo”>

    <?php if ( is_active_sidebar( ‘footer1’ ) || is_active_sidebar( ‘footer2’ ) || is_active_sidebar( ‘footer3’ ) ) { ?>

    <div class=”grid3 clearfix”>
    <div class=”col”>
    <?php dynamic_sidebar(‘footer1’); ?>
    </div>
    <div class=”col”>
    <?php dynamic_sidebar(‘footer2’); ?>
    </div>
    <div class=”col”>
    <?php dynamic_sidebar(‘footer3’); ?>
    </div>
    </div><!–.grid3–>

    <div class=”footer-border”></div>

    <?php } ?>

    <!–<div id=”search-footer-bar”>
    <?php //get_search_form(); ?>
    </div>–>

    <div class=”site-info”>
    <div class=”grid2 clearfix”>
    <div class=”col”>
    <?php echo ‘© ‘.date(‘Y’); ?> 
    <span id=”footer-copyright”><?php echo esc_html( get_theme_mod( ‘copyright_txt’, ‘All rights reserved’ ) ); ?></span><span class=”sep”> · </span>
    <?php do_action( ‘squarex_credits’ ); ?>
    </div>
    <div class=”col”>
    <!–<div class=”search-footer”>
    <i class=”fa fa-search”></i>
    </div>–>
    <?php if ( has_nav_menu( ‘social’ ) ) {
    wp_nav_menu(
    array(
    ‘theme_location’ => ‘social’,
    // ‘container_id’ => ‘icon-footer’,
    ‘container_class’ => ‘icon-footer’,
    ‘menu_id’ => ‘menu-social’,
    ‘depth’ => 1,
    ‘link_before’ => ‘<span class=”screen-reader-text”>’,
    ‘link_after’ => ‘</span>’,
    ‘fallback_cb’ => ”,
    )
    );
    } ?>
    </div><!– .col –>
    </div><!–grid2–>
    </div><!– .site-info –>

    <div id=”back-to-top”>
    <i class=”fa fa-chevron-up”></i>
    </div>

    </footer><!– #colophon –>
    </div><!– .out-wrap –>

    <?php if ( is_active_sidebar( ‘sidebar-1’ ) ) { ?>
    </div><!– #offside-cont – see header.php –>
    <?php } ?>

    <?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 ‘Remove footer from theme’ is closed to new replies.