• 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

    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

    It’s 1:10 am here and this is my desperate cry for help.. ??

Viewing 2 replies - 1 through 2 (of 2 total)
  • 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.

    I solved my problem on WordPress Slack core channel.
    Big thank you to @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.