Josh Harrison
Forum Replies Created
-
Forum: Plugins
In reply to: [New User Approve] [Plugin: New User Approve] Hiding / restricting adminsI am adding a filter for the users that will make the list of users easier to modify. That way you can check if they are an admin or whatever else you want to do.
Stay tuned for this update. I am working on other changes and will have it released in the next week.
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. https://codex.www.ads-software.com/Roles_and_Capabilities
Forum: Plugins
In reply to: [New User Approve] [Plugin: New User Approve] messages on login pageadd this in your theme’s functions.php file to remove the welcome message from the login page:
function remove_welcome_message() {
global $pw_new_user_approve;
remove_filter( ‘login_message’, array( $pw_new_user_approve, ‘welcome_user’ ) );
}
add_action( ‘init’, ‘remove_welcome_message’ );Why is the registration form showing in a new window? Are you using another plugin that modifies the login/registration process?
Forum: Plugins
In reply to: [New User Approve] [Plugin: New User Approve] count downTry 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.
Forum: Plugins
In reply to: [New User Approve] [Plugin: New User Approve] messages on login pageThis has been corrected in version 1.3.3. Sorry about the inconvenience.
Forum: Plugins
In reply to: [New User Approve] [Plugin: New User Approve] Mistakes in the pluginThe 1.4 branch is being experimented with. That version has not been completed or tested. I’d recommend using the stable version, which is currently 1.3.3.
This has been fixed with version 1.3.3.
Forum: Plugins
In reply to: [New User Approve] [Plugin: New User Approve] no email notification for adminThe admin should get an email when somebody has registered. Then when the registered user gets approved or denied by the admin, the user will receive an email saying if they were approved or denied.
Forum: Fixing WordPress
In reply to: Emailing from WordPressEmail issues such as this are almost always issues with your host.
If you are not able to get into your site, just delete the plugin. I’ll attempt to recreate this bug. Let me know if you have any info that may help.
Forum: Plugins
In reply to: [New User Approve] New User Approve Plugin crashes with WordPress 3.1Delete the folder first and then get your site back to normal. Then reinstall the plugin with the latest version and you should have a working site.
Forum: Plugins
In reply to: [New User Approve] New User Approve Plugin crashes with WordPress 3.1Yes. this was a quick fix and by no means permanent. And thank you for the suggestion to fix it. I wanted to get a quick fix to not break any sites. I have lots of other things going on so I didn’t have the time to make it permanent. The good news is that changes can be made later on and most people will not know the difference.
I’m sorry if you are dissappointed.
Forum: Plugins
In reply to: [New User Approve] [Plugin: New User Approve] BrokenThis has been fixed with an emergency fix 1.2.6.
Forum: Plugins
In reply to: [New User Approve] New User Approve Plugin crashes with WordPress 3.1I am sorry about this everybody. I have fixed it and it is ready to be downloaded from the plugin repository. Version 1.2.6 is the latest.
I did the quick fix. A better solution will be made available in the near future.