How to quickly delete members from Woocomerce
Edited
NB! Remember to make a backup of your database before you delete.
Log on to phpmyadmin through your domain providers control panel
Go to SQL query
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.
Run the Delete command:
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
DELETE from www1_users WHERE user_email LIKE '%touchend.com';
phpmyadmin
woocomerce
wordpress
delete
member