Mirza Hamza
Forum Replies Created
-
Forum: Plugins
In reply to: [New User Approve] Disable 2 email notificationsHello @echoleaf,
Please create a ticket on our official website so that we can connect you directly with our Technical team.
Looking forward to getting your issue resolved.
Thank you
Forum: Plugins
In reply to: [New User Approve] Redirect Customer after RegistrationHello @susquad,
Thanks for contacting us,
I hope you are doing well, We’ve informed our technical team about your issue, and they will work on it promptly. When we receive their response, we will get back to you. Our team is here to assist you.
Thanks & Regards
WP Experts Support TeamForum: Plugins
In reply to: [New User Approve] Woocommerce user compatibilityHello @kylures,
Thanks for getting back to us, if you do not want to approve the new customer coming from woocommerce registration then we can give you a solution for that user will become auto-approved as your scenario after when they purchased the product, and their record was created as customer role.
If you have any questions, feel free to reach out. We’re here to assist you.
Thank you
Forum: Plugins
In reply to: [New User Approve] Woocommerce user compatibilityHello @kylures,
Thanks for contacting us,
I hope you are doing well, At the moment, it is not possible with our free version but in our New User Approve Premium plugin you can use the auto-approve user by a role feature where you can set the customer role to be auto approve after their registration and if you want to auto approve a customer after purchasing an item then we can give you the solution for that.
Thanks & Regards
WP Experts Support TeamForum: Plugins
In reply to: [New User Approve] Approve via email?Hello @stewarttodd,
Please try this code on your site and let us know if you still have any issues, we hope this snippet of code will fulfill your need.
Here is the code:
add_filter('new_user_approve_request_approval_message', 'nua_update_status_by_email', 10, 3);
function nua_update_status_by_email($message, $user_login, $user_email) {
$user = get_user_by('email', $user_email);
$user_id = $user->ID;
$nonce = wp_create_nonce('nua_update_user');
$approve_link = add_query_arg(array('user-action'=>'approved', 'user-id' => $user_id, 'nonce' => $nonce ), site_url());
$approve_link = sprintf(__('Approve : %s','new-user-approve' ), $approve_link );
$deny_link = add_query_arg( array('user-action'=>'denied', 'user-id' => $user_id, 'nonce' => $nonce ) , site_url());
$deny_link = sprintf(__('Deny : %s','new-user-approve' ), $deny_link );
$message.='</br>';
$message.=$approve_link;
$message.='</br>';
$message.=$deny_link;
return $message;
}
add_action('init', 'approve_deny_user');
function approve_deny_user() {
if( isset( $_GET['user-action']) && isset($_GET['user-id'])) {
$status = $_GET['user-action'];
$user_id = $_GET['user-id'];
update_user_meta($user_id, 'pw_user_status', $status);
}
}If you have any questions, feel free to reach out. We’re here to assist you.
Thank you
Forum: Plugins
In reply to: [New User Approve] Approve via email?Hello @stewarttodd,
Thanks for contacting us,
I hope you are doing well, We have to check this and we will keep you updated on this.
Thanks & Regards
WP Experts Support TeamForum: Plugins
In reply to: [New User Approve] Approve by User RoleHello @matthieucnc,
Thanks for contacting us,
I hope you are doing well, At the moment it is not possible with our Free version of New User Approve but it is possible with our New User Approve Premium plugin.
If you have any questions, feel free to reach out. We’re here to assist you.
Thanks & Regards
WP Experts Support TeamForum: Reviews
In reply to: [New User Approve] MehHello @lou-friedman,
I hope you are doing well. We are sorry to hear that you had a frustrating experience. First of all, we cannot provide the features of the pro version for free. However, if you’d like to try out more features, we can offer you a trial. We always try to provide additional features for free to new users, beyond those in the pro version.
Thanks & Regards
WP Experts Support TeamHello @thrillhouse,
Thanks for contacting us,
I hope you are doing well, Please create a ticket on our official website so that we can connect you directly with our Technical team.
Looking forward to getting your issue resolved.
Thanks & Regards
WP Experts Support TeamThanks, We have replied to the support ticket. Please follow up there.
Here is the link: Open Ticket.
Hello @luqreh,
Please create a ticket on our official website so that we can connect you directly with our Technical team.
Looking forward to getting your issue resolved.
Thank you
Hello @drmirr,
This issue is not coming on our staging, the provided code is correct and will solve the given error but we will still incorporate the code you wrote into our plugin and include it in the new release.
If you have any questions, feel free to reach out. We’re here to assist you.
Thank you
Hello @drmirr,
Thanks for contacting us,
I hope you are doing well, We’ve informed our technical team about your issue, and they will work on it promptly. When we receive their response, we will get back to you. Our team is here to assist you.
Thanks & Regards
WP Experts Support Team