Created
July 16, 2019 07:34
-
-
Save eyecandy91/53ecb48d918019ebe45667dc15c3edb6 to your computer and use it in GitHub Desktop.
change reset password button text
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_action( 'resetpass_form', 'resettext'); | |
function resettext(){ ?> | |
<script type="text/javascript"> | |
jQuery( document ).ready(function() { | |
jQuery('#resetpassform input#wp-submit').val("Set Password"); | |
}); | |
</script> | |
<?php | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment