Skip to main content

How to quickly delete members from Woocomerce

Written by Knut Hauge

NB! Remember to make a backup of your database before you delete.

  1. Log on to phpmyadmin through your domain providers control panel

  2. Go to SQL query

  3. Trim the example query here so you find the members you would like to delete:

    SELECT * FROM www1_users WHERE user_email LIKE '%touchend.com';

    Remember to switch our the parts after % in the example above. You can also add an attribute for firstname and last name if they are the same on all members you would like to delete.

  4. Run the Delete command:

    DELETE from www1_users WHERE user_email LIKE '%touchend.com';

Note! Note! This can not be undone. So be very carefull not to empty all your members! You should use the same part in the select query from Where

Did this answer your question?