Viewing 1 replies (of 1 total)
  • doublejuriy,

    Try something like this:

    function my_custom_message( $message ) {
    	$message = str_replace( 'wp-login.php', '', $message );
    
    	return $message;
    }
    add_filter( 'new_user_approve_approve_user_message', 'my_custom_message' );

    This code would go in your functions.php of your theme or you could create a separate plugin.

Viewing 1 replies (of 1 total)
  • The topic ‘How to change login URL in approved message’ is closed to new replies.