Title: Missing Delete button for users
Last modified: August 30, 2016

---

# Missing Delete button for users

 *  [vitko](https://wordpress.org/support/users/vitko/)
 * (@vitko)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/missing-delete-button-for-users/)
 * When I’m at the User’s page in the Admin CP and I’m selecting a user, trying 
   to delete it, there is a new page coming up asking what to do with the user’s
   content.
 * > [View post on imgur.com](https://imgur.com/6mC0Hrw)
 * What should I do now?
 * I think it is irrelevant to the missing button but I might share:
    Sometimes 
   if I go to this page I get memory error as well. Tryed to fix it but I don’t 
   have access to php.ini but added some extra in the config.php and at the CP I
   can see that I have enough memory:
 * > [View post on imgur.com](https://imgur.com/ottz034)
 * It’s 1:10 am here and this is my desperate cry for help.. 🙁

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

 *  [writegnj](https://wordpress.org/support/users/writegnj/)
 * (@writegnj)
 * [10 years, 4 months ago](https://wordpress.org/support/topic/missing-delete-button-for-users/#post-6539882)
 * Hi vitko,
    Did u find a solution to this? I’m having the same issue that Delete
   button is not even loading on the page. Tried deactivating all plugin and changing
   theme but nothing worked.
 *  [writegnj](https://wordpress.org/support/users/writegnj/)
 * (@writegnj)
 * [10 years, 4 months ago](https://wordpress.org/support/topic/missing-delete-button-for-users/#post-6539883)
 * I solved my problem on WordPress Slack core channel.
    Big thank you to [@pento](https://wordpress.org/support/users/pento/)!
 * In my case, I have over 80,000 authors on my site and `wp_dropdown_users()` was
   having a hard time rendering all those user into dropdown which caused memory
   error and stop rendering the rest of the page.
 *     ```
       function my_users_args_filter( $query_args ) {
           $query_args['number'] = 1;
           return $query_args;
       }
       add_filter( 'wp_dropdown_users_args', 'my_users_args_filter' );
       ```
   
 * This will only render out 1 author instead of 80,000+. It won’t solve the actual
   problem but will prevent memory error and display delete button which is good
   enough for my case 🙂

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

The topic ‘Missing Delete button for users’ is closed to new replies.

 * 2 replies
 * 2 participants
 * Last reply from: [writegnj](https://wordpress.org/support/users/writegnj/)
 * Last activity: [10 years, 4 months ago](https://wordpress.org/support/topic/missing-delete-button-for-users/#post-6539883)
 * Status: not resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
