• Resolved jvargas

    (@jvargas)


    Hi. I want to edit the footer for Ultimate free theme from theme horse. I did several things in order to change this, but when you change something you are not allowed to save pages or insert images, for example. The footer is hard coded in a way that i can’t find. Please, help. Thanks…

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter jvargas

    (@jvargas)

    Just found a way for not showing the footer. I can’t find a way in order to show the footer and change some information. So I have decided to take it off with css:

    #colophon{
    display: none;
    }

    Hope it helps somebody!

    Here’s a better way in case you don’t want to lose the box, or maybe just want your own copyright:

    File is:
    /wp-content/themes/ultimate/inc/structure/footer-extensions.php

    Change function ultimate_footer_info()
    to pass the $output back that you want. I just commented out what was there and put:
    $output = '<div class="copyright">Copyright &copy; '.date('Y')." My Own Company, All Rights Reserved.</div>";

    It picks up the PHP current year nicely also ?? Be sure to document this for yourself because if you update the theme at any point you will want to pop this back in. Would be nice if this were part of the regular theme vs. extensions so you could “child” it but… i didn’t have time to try that. Adventurers, let me know ??

    Thread Starter jvargas

    (@jvargas)

    Thank you WebbyMerlin for your comment. That’s a real magic touch!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘How to edit Footer on Ultimate Theme’ is closed to new replies.