Where in the Code do I change this footer text?

by grey38
4 replies
  • WEB DESIGN
  • |
I'm using the Genesis theme, how do I get rid of the footer part telling the world it's made by genesis and wordpress? I want to change it though, not just get rid of it by deleting code from the css. I cannot find what I need to change and firebug hasn't helped me...

Any help is appreciated.
#change #code #footer #text
  • Profile picture of the author Rich Strauss
    Probably the best way of doing this is to add a snippet of code into your Genesis child theme functions.php
    PHP Code:
    remove_action( 'genesis_footer', 'genesis_do_footer' );
    add_action( 'genesis_footer', 'custom_footer' );
    function custom_footer() {
        ?>
        /* Your custom footer content goes here */
        <?php
    }
    You can also do it with the Genesis Simple Hooks plugin >>
    WordPress › Genesis Simple Hooks « WordPress Plugins

    Hope that helps.

    Rich

    PS >> http://wordpress.org/plugins/genesis-custom-footer/
    {{ DiscussionBoard.errors[8712276].message }}
  • Profile picture of the author project1010
    Very Simple method
    Just add this code in your css style sheet .

    .creds a {display: none!important;}

    Thanks
    {{ DiscussionBoard.errors[8712395].message }}
  • Profile picture of the author grey38
    Genesis custom footer worked great! Thanks so much!
    {{ DiscussionBoard.errors[8717441].message }}
  • Profile picture of the author alexstone
    Or make jQuery script for Wordpress
    (function($){
    $(document).ready(function(){

    $('.creds').remove();

    });

    })(jQuery)
    {{ DiscussionBoard.errors[8718248].message }}

Trending Topics