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">
© <?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.