I had the same problem when I installed this mod, my fix probably isn't correct, but it works.
- Code: Select all
templates/subSilver/profile_add_body.tpl
#
#-----[ FIND ]------------------------------------------
#
<td class="row2"><span class="gen">{S_BIRTHDAY}</span></td>
</tr>
#
#-----[ AFTER, ADD ]------------------------------------------
#
<tr>
<td class="row1"><span class="gen">{L_AGE_FLAG}:</span></td>
<td class="row2">
<input type="radio" name="age_flag" value="1" {INFO_YES} />
<span class="gen">{L_YES}</span>
<input type="radio" name="age_flag" value="0" {INFO_NO} />
<span class="gen">{L_NO}</span></td>
</tr>
In the above, where you see {L_AGE_FLAG}:
replace that with "Hide Your Age" or whatever else you want, and it will show up in the profile.
Note, you also need to do this in templates/subSilver/admin/user_edit_body.tpl.
Again, it isn't pretty, but it works.