• 14gate

    (@14gate)


    Please How do I remove powered by wordpress on my Maxwell theme footer. below is who the theme footer looks

    <?php
    /**
    * The template for displaying the footer.
    *
    * Contains all content after the main content area and sidebar
    *
    * @package Maxwell
    */

    ?>

    </div><!– #content –>

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

    <div id=”footer” class=”footer-wrap”>

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

    <div id=”footer-text” class=”site-info”>
    <?php do_action( ‘maxwell_footer_text’ ); ?>
    </div><!– .site-info –>

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

    </footer><!– #colophon –>

    </div>

    </div><!– #page –>

    <?php wp_footer(); ?>

    </body>
    </html>

Viewing 2 replies - 1 through 2 (of 2 total)
  • Theme Author ThemeZee

    (@themezee)

    Hi there,

    Thanks for leaving a review for Maxwell.

    You can remove this part of the code to delete the credit link:

    <div id=”footer-text” class=”site-info”>
    <?php do_action( ‘maxwell_footer_text’ ); ?>
    </div><!– .site-info –>

    You can also hide it with custom CSS code:

    .site-info {
        display: none;
    }

    Best,
    Thomas

    Thread Starter 14gate

    (@14gate)

    Thank you. it worked. Like your theme

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘who can I remove powered by wordpress on maxwell theme’ is closed to new replies.