Josh Harrison
Forum Replies Created
-
Forum: Plugins
In reply to: [New User Approve] activate user in mobile view (smartphone)When I look at it, I see the approve/deny options. Do you see the any other options in the dropdown menu such as edit or delete?
Forum: Plugins
In reply to: [New User Approve] Users list filter on top not workingI do have a fix for this and it will be included in a new version I’m releasing very soon.
Forum: Plugins
In reply to: [New User Approve] Not unique table/alias…I am working on a fix for this right now. Trying to get an updated version out in the next few days.
Forum: Plugins
In reply to: [New User Approve] Feature Request: Whitelist domainsThat’s a great idea. I’m working on a maintenance release but that is definitely a feature worth considering in the next major version.
Let me know if you think of other great features.
Forum: Plugins
In reply to: [New User Approve] Language-File is still in englishYes. They are out of date. You can get more info on translating the plugin at https://make.www.ads-software.com/polyglots/handbook/. That will help you get started with translating any file in WordPress including those in the New User Approve plugin.
- This reply was modified 8 years, 5 months ago by Josh Harrison.
Forum: Plugins
In reply to: [New User Approve] Any way to differentiate unapproved usersCouldn’t you just query the users that have a status of pending?
Forum: Plugins
In reply to: [New User Approve] Include approval link in email to adminSince this has to do with the woocommerce plugin, I would post this same question in their forum. I’m sure you’ll find more help there.
Forum: Plugins
In reply to: [New User Approve] Link not valide upon deliveryI am looking into this issue. Sorry for the inconvenience.
Thanks for posting this. If there is anyway the plugin could be updated to work better with the Authors Avatars List plugin, please let me know.
Forum: Plugins
In reply to: [New User Approve] User Approval NotificationIt is behaving as intended. To get around this, you could setup a group email for all your admins and then forward that email to each admin.
Forum: Plugins
In reply to: [New User Approve] Adding new featuresI will add it to the list of new features and will do my best to add it in an upcoming version.
Forum: Plugins
In reply to: [New User Approve] de-activiate the new user approval email sent to adminYou would need to remove the action in your theme or in a plugin.
Something like this would work:
remove_action( 'user_register', array( pw_new_user_approve(), 'request_admin_approval_email_2' ) );
Forum: Plugins
In reply to: [New User Approve] Adding new featuresYou can also approve and deny users from the users page in the admin. That will also make it possible for you to delete any users as well. The plugin page in the admin will go away since the users page does everything and more.
Forum: Plugins
In reply to: [New User Approve] New User Confirmation EmailsWhen a user requests to reset their password, the password is not included in the email. The user should simply click on the link and he/she will be given the opportunity to reset their password. The password reset is handled by WordPress core.
Forum: Plugins
In reply to: [New User Approve] Custom Email notificationThe admin url is already in the email. But if you want to customize it, you would need to modify it using the filter as shown above.
If you want to add more admins to receive the email, you can do the following:
function email_admin( $to ) { // add more email addresses $to[] = '[email protected]'; return $to; } add_filter( 'new_user_approve_email_admins', 'email_admins' );
If you don’t want to add any code, I have an addon plugin available for purchase with these setup as options (https://newuserapprove.com).