Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter brianhallproperties

    (@brianhallproperties)

    Can anyone help me replace the footer?

    You can setup a child theme and try adding the following snippet to your theme’s functions.php file.
    Replace the example quote in echo ' ' with your desired content.

    // replace Footer Credits with a quote
    
    function removeHighwindCredit() {
    remove_action( 'highwind_footer', 'highwind_credit', 20 );
    add_action( 'highwind_footer', 'my_footer_content' );
    }
    //add custom credits/text to the footer
    function my_footer_content() {
    echo '"The movement is contagious." — Yuri Kochiyama';
    }
    add_action('after_setup_theme','removeHighwindCredit');

    Hi, I’ve tried this, and all the other footer threads for Highwind, and I’m just not getting it!

    I should add that I am very new to this and figuring it out as I go. I just want to put my own text in the footer (the “powered by…” area)

    I’ve activated a child theme, and have tried adding the codes provided to the child theme’s functions.php but nothing is changing. I am probably doing something wrong, but I don’t know what!

    Is there a particular place in the functions I’m supposed to input this? My Child theme is activated.

    What am I missing!?

    Thanks in advance!

    @ceahp I don’t know why it’s not working for you. Be sure to review the codex for Using functions.php. If you still need assistance, please include a link to the website.

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