• Resolved au-s

    (@au-s)


    Hello

    I had a customized footer in 2016 with some php-code and an image.
    I would like to place that code in the same place as powered by wordpress link in twenty seventeen.

    Since this theme is a bit different… can you give me a tip on where I can do it?

    Sincerly
    Artur

    • This topic was modified 7 years, 11 months ago by au-s.
Viewing 5 replies - 1 through 5 (of 5 total)
  • First, you’ll want to make a child theme so your changes won’t be overridden once the theme is updated in the future. Then, you’ll copy site-info.php from template-parts/footer in your parent theme’s folder to the same location in your child theme’s folder (you’ll need to create those folders if they don’t already exist). Finally, you can edit site-info.php and replace the code between <div class="site-info"> and </div> with the appropriate code.

    Some of us are not expert programmers here…. some of us download wordpress because of the ease and convenience…….

    Thread Starter au-s

    (@au-s)

    Thank you. That did the trick.
    It can be marked as solved.

    Sincerly
    Artur

    Thread Starter au-s

    (@au-s)

    I don’t understand your statement besides that WordPress and themes are awesome and easy to use.
    To customize it along with your needs is also easy but sometimes, as in my case, one need assistance.

    The most important and oldest rule: “never, never, ever never used the main theme for this correction”

    If you want to custom theme for your needs always use ChildTheme > So if you want in the footer appears something else place this code :

    `<?php
    $credits = ‘© ‘ . date( ‘Y’ ) . ‘ ‘ . get_bloginfo( ‘name’, ‘display’ );
    echo apply_filters( ‘footer_credits’, $credits );
    ?>

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Erase powered by wordpress’ is closed to new replies.