Remove the footer credits from the Storefront theme when using it for a WooCommerce site on your child site.
Snippet Type
Execute on Child Sites
Snippet
add_action( 'wp', 'wc_remove_storefront_credits' );
function wc_remove_storefront_credits() {
remove_action( 'storefront_footer', 'storefront_credit', 20 );
}