Created
February 12, 2018 06:04
-
-
Save SirDarcanos/718852e08a602bdbc7452904ed30d6e3 to your computer and use it in GitHub Desktop.
functions.php
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_filter( 'woocommerce_get_script_data', 'my_strength_meter_custom_strings', 10, 2 ); | |
function my_strength_meter_custom_strings( $data, $handle ) { | |
if ( 'wc-password-strength-meter' === $handle ) { | |
$data_new = array( | |
'i18n_password_error' => esc_attr__( 'Come on, enter a stronger password.', 'theme-domain' ), | |
'i18n_password_hint' => esc_attr__( 'The password should be at least seven characters long.', 'theme-domain' ) | |
); | |
$data = array_merge( $data, $data_new ); | |
} | |
return $data; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment