Allow Users
-
Hi Ben,
I spent some time yesterday trying to figure out why “Allow Users” does not work (v1.8). I came to the conclusion that there must be soemthing wrong in the code. I think is_user_logged_in is missing in the code. I got it to work using…
if ( is_user_logged_in() && (bool) get_option( 'password_protected_administrators' ) )
…in the Allow users function but since I am not a PHP-programmer I prefer if you make a correct update of your code =)
If you check the original code you’ll see my point;
/** * Allow Administrators * * @param boolean $bool Allow administrators. * @return boolean True/false. */ function allow_administrators( $bool ) { if ( ! is_admin() && current_user_can( 'manage_options' ) && (bool) get_option( 'password_protected_administrators' ) ) { return 0; } return $bool; } /** * Allow Users * * @param boolean $bool Allow administrators. * @return boolean True/false. */ function allow_users( $bool ) { if ( ! is_admin() && current_user_can( 'manage_options' ) && (bool) get_option( 'password_protected_users' ) ) { return 0; } return $bool; }
Great plugin by the way! =)
Br,
Pat!
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Allow Users’ is closed to new replies.