• I´m trying to remove my footer, I’m new at this!!
    I´m working on wamp for practicing purposes.

    My Footer says: CyberChimps WordPress Themes

    Here´s the footer.php

    <?php
    /**
    * Title: Footer template.
    *
    * Description: Defines footer content.
    *
    * Please do not edit this file. This file is part of the Cyber Chimps Framework and all modifications
    * should be made in a child theme.
    *
    * @category Cyber Chimps Framework
    * @package Framework
    * @since 1.0
    * @author CyberChimps
    * @license http://www.opensource.org/licenses/gpl-license.php GPL v2.0 (or later)
    * @link http://www.cyberchimps.com/
    */

    if( cyberchimps_get_option( ‘footer_show_toggle’ ) == ‘1’ ) {

    do_action( ‘cyberchimps_before_footer_widgets’ ); ?>

    <div class=”container-full-width” id=”footer_section”>
    <div class=”container”>
    <div class=”container-fluid”>
    <div id=”footer-widgets” class=”row-fluid”>
    <div id=”footer-widget-container” class=”span12″>
    <div class=”row-fluid”>
    <?php if( !dynamic_sidebar( ‘cyberchimps-footer-widgets’ ) ) : ?>
    <aside class=”widget-container span3″>
    <h3 class=”widget-title”><?php _e( ‘Pages’, ‘parallax’ ); ?></h3>

    <?php wp_list_pages( ‘title_li=’ ); ?>
    </aside>

    <aside class=”widget-container span3″>
    <h3 class=”widget-title”><?php _e( ‘Archives’, ‘parallax’ ); ?></h3>

    <?php wp_get_archives( ‘type=monthly’ ); ?>
    </aside>

    <aside class=”widget-container span3″>
    <h3 class=”widget-title”><?php _e( ‘Categories’, ‘parallax’ ); ?></h3>

    <?php wp_list_categories( ‘show_count=1&title_li=’ ); ?>
    </aside>

    <aside class=”widget-container span3″>
    <h3 class=”widget-title”><?php _e( ‘WordPress’, ‘parallax’ ); ?></h3>

    <?php wp_register(); ?>
    <?php wp_loginout(); ?>
    ” target=”_blank”
    title=”<?php esc_attr_e( ‘Powered by WordPress, state-of-the-art semantic personal publishing platform.’, ‘parallax’ ); ?>”> <?php _e( ‘WordPress’, ‘parallax’ ); ?>
    <?php wp_meta(); ?>

    </aside>
    <?php endif; ?>
    </div>
    <!– .row-fluid –>
    </div>
    <!– #footer-widget-container –>
    </div>
    <!– #footer-widgets .row-fluid –>
    </div>
    <!– .container-fluid–>
    </div>
    <!– .container –>
    </div> <!– #footer_section –>

    <?php do_action( ‘cyberchimps_after_footer_widgets’ ); ?>

    <?php } ?>

    <?php do_action( ‘cyberchimps_before_footer_container’ ); ?>
    <?php do_action( ‘cyberchimps_footer’ ); ?>
    <?php do_action( ‘cyberchimps_after_footer_container’ ); ?>

    </div><!– #wrapper .container-fluid –>

    <?php do_action( ‘cyberchimps_after_wrapper’ ); ?>

    </div><!– container –>

    <?php wp_footer(); ?>

    </body>
    </html>

    Please let me know what do I have to change.
    Thanks in advance!!

The topic ‘Parallax Theme Footer Issue’ is closed to new replies.