• Hi,
    I use Lawyer theme for the first time (I created child theme of course for changes).
    My question is about how to change some words in the footer credit line. I can’t see nothing in functions.php or in footer.php about this.
    Thank you

Viewing 4 replies - 1 through 4 (of 4 total)
  • Moderator Jan Dembowski

    (@jdembowski)

    Forum Moderator and Brute Squad

    What words do you want to change from what to what?

    Thread Starter Scribelle

    (@scribelle)

    Hi,
    just wanna remove “Powered by WordPress” . . .

    AddWeb Solution

    (@addweb-solution-pvt-ltd)

    Hello scribelle,

    => Put below code into your current theme’s functions.php file located at wp-content/themes/your_current_active_theme/ folder.


    add_action( 'lawyer_landing_page_footer', 'lawyer_landing_page_footer_bottom', 40 );
    function lawyer_landing_page_footer_bottom(){
    ?>
    <div class="footer-b">
    <div class="container">
    <div class="site-info">
    <span class="copyright"><?php echo esc_html__( '© Copyright ', 'lawyer-landing-page' ) . esc_html( date_i18n( __( 'Y', 'lawyer-landing-page' ) ) ); ?> "><?php echo esc_html( get_bloginfo( 'name' ) ); ?>.</span>
    </div>
    </div>
    </div>
    <?php
    }

    Note : All Changes you done in functions.php or other file are gone when you update theme. So prefer Child Theme

    Hope this will helps you.

    Thread Starter Scribelle

    (@scribelle)

    Thank You addweb!
    I was not sure but it’s okay.
    (Of course, I got child-theme) ??
    Nice day.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Footer credit’ is closed to new replies.