English version - Remove Name Day from Portal ?
riverkqj - 10-03-2007, 23:07 Temat postu: Remove Name Day from Portal ? Hi i have the latest przemo phpbb forum , how do i remove the name-day feature ?
chelloPL - 11-03-2007, 20:39
riverkqj, I not sure if we are talking about the same "name-day" feature.
If you want to change eg. "Yesterday 23:07" to "2007-03-10 23:07" (or similar), the easiest way is to change in includes/functions.php, in function create_date:
Kod: | function create_date($format, $gmepoch, $tz, $no_today = false)
{
global $board_config, $lang;
static $translate;
|
to:
Kod: | function create_date($format, $gmepoch, $tz, $no_today = false)
{
global $board_config, $lang;
static $translate;
$no_today = true;
|
so only add new line contains "$no_today = true".
riverkqj - 11-03-2007, 21:36
Hi sorry no its the one on this portal page
www.tottenhamhotspurs.tv/forum/portal.php
Thanks for the reply
chelloPL - 11-03-2007, 23:10
Ok - now I understand
From templates/subSilver/portal_modules/birthday_menu.tpl, remove:
Kod: | <tr>
<td class="row2" align="{BIRTH_ALIGN}"><span class="gensmall"><b>{L_IMIENINY}</b>: {IM_NAME}</span></td>
</tr> |
riverkqj - 11-03-2007, 23:20
Thats great thank you very much
|
|
|