WooCommerce Storefront theme Footer Copyright customization
For changing woocommerce footer copy right text. We have to write a custom function snipet to our child theme functions.php or your root theme functions.php file. Php Code snipet below- // Store Front Hook modification add_action( 'init', 'mycustom_remove_footer_credit', 10 ); function mycustom_remove_footer_credit () { remove_action( 's...