
"successRedirect" => "users_Profile.php",
This will appear twice on the login page, you can just update this to be whatever page on the site you would like. Make sure you update both instances though, the first is for the standard login and the second is for the auto login.
Next you would apply the Email Confirmed access restriction rule on the page you are sending the users to after a successful login, just put this code toward the top of that page just after the include lines:
<?php
if (!WA_Auth_RulePasses("Email Confirmed")){
WA_Auth_RestrictAccess("users_Profile.php");
}
?>
This will check to see if the user is verified, and if not they will be redirected to the page listed, the users_Profile.php page in this case.

thats great thanks :)