Add the function below to your child theme functions.php file.
// change Sale to Save on the sale badge add_filter( โwoocommerce_sale_flashโ, โwc_custom_replace_sale_textโ ); function wc_custom_replace_sale_text( $html ) { return str_replace( __( โSale!โ, โwoocommerceโ ), __( โSave!โ, โwoocommerceโ ), $html ); }