XF 1.4 How can I erase all users' Location field?

Lile

New member
How to start from scratch with the contents of location field.

All users' location fields should be emptied.

Any advice, please?
 
Run the below query on your database:
Code:
UPDATE xf_user_profile SET location = ''

That will empty all current location fields.
 
Back
Top Bottom