user8293572
user8293572

Reputation: 1

Edit Hidden Footer Wordpress

This is the footer of code for my theme. I would like to Remove "Powered by WordPress" but i can not see the solution here, please help

<?php do_action( 'maxwell_before_footer' ); ?>

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

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

        <?php do_action( 'maxwell_footer_menu' ); ?>

        <div id="footer-text" class="site-info">
            <?php do_action( 'maxwell_footer_text' ); ?>
        </div><!-- .site-info -->

    </footer><!-- #colophon -->

</div>

Upvotes: 0

Views: 613

Answers (3)

Pawan Thakur
Pawan Thakur

Reputation: 591

//You can replace div or do_action according to your choice

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

//Or hide it by css

.site-info {
    display: none;
}

Upvotes: 0

Difster
Difster

Reputation: 3270

It's right here: <?php do_action( 'maxwell_footer_text' ); ?>

Replace that with whatever you want in the footer.

Upvotes: 1

Mark
Mark

Reputation: 532

You find the WordPress footer by commenting out each do_action method call in turn until the text goes away. After that you can grep the theme source to find the source method.

Upvotes: 0

Related Questions