XF 1.1 Query to set DOB to hidden?

Nudaii

Well-known member
Is there a query to set DOB to hidden? I'm about to import a large forum (10kish or more members) and having DOB hidden by default is needed as alot enjoy their privacy
 
This will stop the year of birth being displayed:
Code:
UPDATE xf_user_option SET show_dob_year = 0;

This will stop the date of birth being displayed:
Code:
UPDATE xf_user_option SET show_dob_date = 0;
 
Top Bottom