Title: Admin URL
Last modified: February 28, 2024

---

# Admin URL

 *  Resolved [rohans](https://wordpress.org/support/users/rohans/)
 * (@rohans)
 * [2 years, 1 month ago](https://wordpress.org/support/topic/admin-url-3/)
 * The email an admin receives has a link that they can click on, to approve a user.
   We use multisite, and when an admin click on this link, all they see is a list
   of the site users, no filtered list of users to approve.
 * How can I override this link? I want to send them to this link, where the list
   of awaiting users are.
 * `/wp-admin/admin.php?page=new-user-approve-admin `
 * The page I need help with: _[[log in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fwordpress.org%2Fsupport%2Ftopic%2Fadmin-url-3%2F%3Foutput_format%3Dmd&locale=en_US)
   to see the link]_

Viewing 2 replies - 1 through 2 (of 2 total)

 *  Plugin Support [Mirza Hamza](https://wordpress.org/support/users/hamza1010/)
 * (@hamza1010)
 * [2 years, 1 month ago](https://wordpress.org/support/topic/admin-url-3/#post-17462084)
 * Hello [@rohans](https://wordpress.org/support/users/rohans/),
 * 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. Thank you for your patience.
 * Thanks & Regards
   WP Experts Support Team
 *  Plugin Support [Mirza Hamza](https://wordpress.org/support/users/hamza1010/)
 * (@hamza1010)
 * [2 years, 1 month ago](https://wordpress.org/support/topic/admin-url-3/#post-17472848)
 * Hello [@rohans](https://wordpress.org/support/users/rohans/),
 * We understand that you want to replace the link of the default users list with
   the users list interface of New User Approve in the New User Approve Admin Approval
   Email, please find the attached snippet of code which you should add in functions.
   php file of active child theme. if you still have any issues please feel free
   to reach out.
 * Here is the code:
 *     ```wp-block-code
       // nua code to replace the link of default wp users list with the user list of New User Approve in admin approval email
       add_filter('new_user_approve_notification_message_default', 'nua_change_users_link');
   
       function test($message) {
       	$message = str_replace('{admin_approve_url}', get_admin_url() . 'admin.php?page=new-user-approve-admin' , $message);
       	return $message;
       }
       ```
   
 * Thank you

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Admin URL’ is closed to new replies.

 * ![](https://ps.w.org/new-user-approve/assets/icon-128x128.gif?rev=2544141)
 * [New User Approve](https://wordpress.org/plugins/new-user-approve/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/new-user-approve/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/new-user-approve/)
 * [Active Topics](https://wordpress.org/support/plugin/new-user-approve/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/new-user-approve/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/new-user-approve/reviews/)

## Tags

 * [admin url](https://wordpress.org/support/topic-tag/admin-url/)

 * 2 replies
 * 2 participants
 * Last reply from: [Mirza Hamza](https://wordpress.org/support/users/hamza1010/)
 * Last activity: [2 years, 1 month ago](https://wordpress.org/support/topic/admin-url-3/#post-17472848)
 * Status: resolved