Skip to content

Instantly share code, notes, and snippets.

@kjohnson
Created September 4, 2015 19:41
Show Gist options
  • Select an option

  • Save kjohnson/cd3d02e0d5815fad42c7 to your computer and use it in GitHub Desktop.

Select an option

Save kjohnson/cd3d02e0d5815fad42c7 to your computer and use it in GitHub Desktop.
<?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