MyBB Community Forums

Full Version: Birthdays - 1 hidden
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Some member's birthdays show up on the index page as "1 Hidden"
Is there a way for me force their username to show up?
1. In usercp_profile template change:
<select name="birthdayprivacy">
{$bdayprivacysel}
</select>
to:
<input type="hidden" name="birthdayprivacy" value="all" />
That will hide the option from visitors, however won't make it default for users who have changed it already, so need to do step 2.

2. Run a query on your database: http://community.mybb.com/thread-44380.html / http://community.mybb.com/thread-4720.html
Your query is:
UPDATE `mybb_users` SET `birthdayprivacy` = 'all'