MyBB Community Forums

Full Version: Birthday Privacy Dropdown not working
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello all.

My MyBB 1.8 board's usercp.php's Birthday Privacy isn't working. It just shows a dropdown menu with no options in it. How can I fix this?
[Image: 41be246585.png]
I am using the Dark Fusion theme: http://mods.mybb.com/view/dark-fusion-2

Any help would be appreciated! Thanks!
I suggest you to use a theme compatible with 1.8 or you may experience more problems.
am having the same issue, how do i go about theme compatibility?
(2014-11-06, 10:46 AM)dragonexpert Wrote: [ -> ]You should use a theme from here: http://community.mybb.com/mods.php?actio...ory=themes

you mean i have to change my theme completely? damn
Your other option is using the Find Updated Templates feature and then using the Diff Tool to find out what changed.
(2014-11-06, 10:58 AM)dragonexpert Wrote: [ -> ]Your other option is using the Find Updated Templates feature and then using the Diff Tool to find out what changed.

Thanks now i understand what you said

But i can see anything pertaining to birthday privacy stuff

Pls help out thanks
I'm having the same problem.
Solved.

Go into ACP>templates and style>templates>your theme>user control panel templates>usercp_profile

find;

<tr>
<td colspan="3">
<span class="smalltext">{$lang->birthdayprivacy}</span>
</td>
</tr>

and directly below it, add:

<tr>
<td colspan="3">
<select name="birthdayprivacy">
<option value="all"{$allselected}>{$lang->birthdayprivacyall}</option>
<option value="none"{$noneselected}>{$lang->birthdayprivacynone}</option>
<option value="age"{$ageselected}>{$lang->birthdayprivacyage}</option>
</select>
</td>
</tr>

And there ya go. Big Grin

Solved.

Go into ACP>templates and style>templates>your theme>user control panel templates>usercp_profile

find;

<tr>
<td colspan="3">
<span class="smalltext">{$lang->birthdayprivacy}</span>
</td>
</tr>

and directly below it, add:

<tr>
<td colspan="3">
<select name="birthdayprivacy">
<option value="all"{$allselected}>{$lang->birthdayprivacyall}</option>
<option value="none"{$noneselected}>{$lang->birthdayprivacynone}</option>
<option value="age"{$ageselected}>{$lang->birthdayprivacyage}</option>
</select>
</td>
</tr>

And there ya go. Big Grin