Quantcast
Channel: new-user-approve – WordPress.org Forums
Viewing all 121 articles
Browse latest View live

net-buoy on "wp-login.php produces error with no user info and OpenID fails"

$
0
0

Just discovered that new-user-aprove plugin is causing these issues


net-buoy on "[plugin: new-user-approve] Breaks wp-login.php and kills OpenID"

Josh Harrison on "[plugin: new-user-approve] Breaks wp-login.php and kills OpenID"

$
0
0

This has been fixed with version 1.3.3.

Josh Harrison on "[Plugin: New User Approve] count down"

$
0
0

Try it with version 1.3.3. This should be corrected because I got rid of the failed login message that was appearing on the login page. If you are still having problems, let me know.

Josh Harrison on "[Plugin: New User Approve] registration window does nto close"

$
0
0

Why is the registration form showing in a new window? Are you using another plugin that modifies the login/registration process?

Dougj2 on "[Plugin: New User Approve] registration window does nto close"

$
0
0

I added the plugin "Login with Ajax" worked like a charm and cleared my issues

Josh Harrison on "[Plugin: New User Approve] How do I make it so a user with Editor Permission can Approve Users?"

$
0
0

This can be done by adding the following to your theme:

function twentyeleven_nuacap( $cap ) {
return 'edit_posts';
}
add_filter( 'new_user_approve_minimum_cap', 'twentyeleven_nuacap' );

Simply return the capability you require the approver to have. http://codex.wordpress.org/Roles_and_Capabilities

division123 on "[Plugin: New User Approve] lost password link"

$
0
0

Hi, did you resolve this problem. I have the same issue?

Thanks


gavbush on "[Plugin: New User Approve] lost password link"

$
0
0

I've got the same problem, existing users before the plugin was installed can't get their lost password, but new users that have been approved are ok. if you add "approved" to the wp_usermeta table for the user id in the database pw_user_status field it then works ok.

Would be great to know what's going on here??

Jason Verdelli on "[Plugin: New User Approve] Approval by site administrator?"

$
0
0

Chuck,

One thing you could do that worked for me is edit capabilities.php which is in the wp-includes folder. Go to line 95 where it has the following:

if ( is_multisite() && !is_super_admin( $user_id ) )

and get rid of "super" so it looks like this:

if ( is_multisite() && !is_admin( $user_id ) )

Blog admins won't be able to edit users, but it will give them access to the New User Approve section. Please let me know if this helps.

Roy on "[Plugin: New User Approve] count down"

$
0
0

Did I forget to reply to your answer? Excuse me. But no countdown anymore indeed!

davemac on "[Plugin: New User Approve] How do I make it so a user with Editor Permission can Approve Users?"

$
0
0

The above doesnt seem to work? Shouldn't it be return 'edit_users'; ?

davemac on "[Plugin: New User Approve] How do I make it so a user with Editor Permission can Approve Users?"

$
0
0

This worked for me:

function hipo_add_extras(){
	$editor = get_role( 'editor' );
	$editor->add_cap( 'list_users' );
	$editor->add_cap( 'edit_users' );
	$editor->add_cap( 'new_user_approve_minimum_cap' );
}
add_action('admin_init','hipo_add_extras');

Web2Guru on "[Plugin: New User Approve] Paged Results and Mass Approve"

$
0
0

These two features would be great for sites that gets a large number of new users. Without keeping an eye on it, one of my sites quickly got 100's of pending users (no doubt some are spam).

Any chance of seeing something like this soon?

I envision something like the "All Posts" page and other pages have: a limit in the screen options tab and paged results, even searchable.

Maybe even some kind of integration into the "All Users" page?

http://wordpress.org/extend/plugins/new-user-approve/

Christalv on "[Plugin: New User Approve] Ignoring Set Password"

$
0
0

Were you ever able to find a solution for this issue?


montchr on "[Plugin: New User Approve] How do I make it so a user with Editor Permission can Approve Users?"

$
0
0

The first solution worked fine for me.

The second one did not.

pxforti on "[Plugin: New User Approve] How do I make it so a user with Editor Permission can Approve Users?"

$
0
0

This worked for me too:

function hipo_add_extras(){
	$editor = get_role( 'editor' );
	$editor->add_cap( 'list_users' );
	$editor->add_cap( 'edit_users' );
	$editor->add_cap( 'new_user_approve_minimum_cap' );
}
add_action('admin_init','hipo_add_extras');

AWESOME!

gerencia@enjambregroup.com on "[Plugin: New User Approve] Ignoring Set Password"

$
0
0

I think this is one of the most important thing with this plugin? why is without answer ????

Josh Harrison on "[Plugin: New User Approve] Hitting approve or deny for a single user approves all pending users"

$
0
0

I'm assuming you are not experiencing this behavior any longer. I have never been able to recreate this problem. If you need further help, let me know.

leumund on "[Plugin: New User Approve] Ignoring Set Password"

$
0
0

How can i use the filter new_user_approve_bypass_password_reset?

Viewing all 121 articles
Browse latest View live