Created
September 4, 2015 19:41
-
-
Save kjohnson/cd3d02e0d5815fad42c7 to your computer and use it in GitHub Desktop.
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
| <?php | |
| add_filter( 'nf_registration_logged_in_msg', 'kbj_nf_custom_login_form_success_message' ); | |
| function kbj_nf_custom_login_form_success_message( $message ){ | |
| $message = "You are now logged in. Please <a href='#'>click here</a> to be redirected."; | |
| return $message; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment