• zacherygrew

    (@zacherygrew)


    I am trying to change the text on my footer where it says “Storefront designed by WooCommerce.” I’d still like to keep the Copyright but just change that text. Can anyone help me do this?

Viewing 3 replies - 1 through 3 (of 3 total)
  • LogoLogics

    (@logologics)

    Hi,

    There is a nice little plugin: https://upwerd.com/remove-woocommerce-footer-credit Not only lets it change the text, but you can put anything in there and style it the way you like it.

    You can also remove the credits by adding the code below to your child themes functions.php. It will only remove “created by Woothemes” and leave the ? sign and the websites name. Make sure to have a backup and know what you are doing. If you are not familiar with this, you better use the plugin above.

    Add the following code to your child theme’s funtctions.php file:

    add_action( 'init', 'custom_remove_footer_credit', 10 );
    
    function custom_remove_footer_credit () {
        remove_action( 'storefront_footer', 'storefront_credit', 20 );
        add_action( 'storefront_footer', 'custom_storefront_credit', 20 );
    } 
    
    function custom_storefront_credit() {
            ?>
            <div class="site-info">
                    &copy; <?php echo get_bloginfo( 'name' ) . ' ' . get_the_date( 'Y' ); ?>
            </div><!-- .site-info -->
            <?php
    }

    Annie

    • This reply was modified 8 years ago by LogoLogics.
    • This reply was modified 8 years ago by LogoLogics.

    Awesome!

    Thanks

    Hi,
    this is great solution, if you are using Site title.
    But how to edit footer info, if Site title (and tagline) is left blank??

    Thank you

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Changing text on footer’ is closed to new replies.