Kod: Tümünü seç
#
# Always show birthday in profile as people are used from Niels' MOD :-)
#
#
#-----[ OPEN ]------------------------------------------
#
memberlist.php
#
#-----[ FIND ]------------------------------------------
#
'LOCATION' => ($data['user_from']) ? $data['user_from'] : '',
#
#-----[ AFTER, ADD ]------------------------------------------
#
// Show Birthday in Profile (removing spaces when day or month is only one-digit)
'BIRTHDAY' => ($data['user_birthday']) ? str_replace(' ','',$data['user_birthday']) : '',
// Show Birthday in Profile
#
#-----[ OPEN ]------------------------------------------
#
styles/subsilver/template/memberlist_view.html
#
#-----[ FIND ]------------------------------------------
#
<tr>
<td class="gen" align="right" nowrap="nowrap">{L_WEBSITE}: </td>
<td><b><!-- IF U_WWW --><a class="genmed" href="{U_WWW}" target="_userwww">{U_WWW}</a><!-- ENDIF --></b></td>
</tr>
#
#-----[ AFTER, ADD ]------------------------------------------
#
<tr>
<td class="gen" align="right" nowrap="nowrap">{L_BIRTHDAY}: </td>
<td><b class="genmed">{BIRTHDAY}</b></td>
</tr>
#
#-----[ OPEN ]------------------------------------------
#
language/en/common.php
#
#-----[ FIND ]------------------------------------------
#
'LOCATION' => 'Location',
#
#-----[ AFTER, ADD ]------------------------------------------
#
// Show Birthday in Profile
'BIRTHDAY' => 'Birthday',
// Show Birthday in Profile
#
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------
#