Brent W Well-known member Aug 11, 2013 #1 Cleaning up a spammed forum and want to clear the About Me field for everyone with less than say 30 posts.
Cleaning up a spammed forum and want to clear the About Me field for everyone with less than say 30 posts.
Brent W Well-known member Aug 11, 2013 #2 Would be nice to ban these users at the same time as well. Upvote 0 Downvote
Brent W Well-known member Aug 14, 2013 #3 Bump. I'll take just a query that clears the About field for users with less than 1 post. Upvote 0 Downvote
Mike XenForo developer Staff member Aug 14, 2013 #4 Code: UPDATE xf_user_profile AS p INNER JOIN xf_user AS u ON (u.user_id = p.user_id) SET p.about = '' WHERE u.message_count < 1; Upvote 0 Downvote
Code: UPDATE xf_user_profile AS p INNER JOIN xf_user AS u ON (u.user_id = p.user_id) SET p.about = '' WHERE u.message_count < 1;