Seite 1 von 1

memberlist.php

Verfasst: 03.01.2007 16:32
von keen
wie bekomme ich in der memberlist.php die spalte "e-mail" raus?

Verfasst: 03.01.2007 17:56
von MagMo
Hi,

ändere folgendes:

Code: Alles auswählen

#---[ OPEN ]---
memberlist.php

#---[ FIND ]---
$mode_types_text = array($lang['Sort_Joined'], $lang['Sort_Username'], $lang['Sort_Location'], $lang['Sort_Posts'], $lang['Sort_Email'],  $lang['Sort_Website'], $lang['Sort_Top_Ten']);
$mode_types = array('joined', 'username', 'location', 'posts', 'email', 'website', 'topten');

#---[ REPLACE WITH ]---
$mode_types_text = array($lang['Sort_Joined'], $lang['Sort_Username'], $lang['Sort_Location'], $lang['Sort_Posts'], $lang['Sort_Website'], $lang['Sort_Top_Ten']);
$mode_types = array('joined', 'username', 'location', 'posts', 'website', 'topten');

#---[ OPEN ]---
templates/subSilver/memberlist_body.tpl

#---[ FIND ]---
	  <th class="thTop" nowrap="nowrap">{L_EMAIL}</th>

#---[ REPLACE WITH ]---

#---[ FIND ]---
	  <td class="{memberrow.ROW_CLASS}" align="center" valign="middle">&nbsp;{memberrow.EMAIL_IMG}&nbsp;</td>

#---[ REPLACE WITH ]---

#---[ FIND ]---
	  <td class="catBottom" colspan="8" height="28">&nbsp;</td>

#---[ REPLACE WITH ]---
	  <td class="catBottom" colspan="7" height="28">&nbsp;</td>
Grüße
MagMo

Verfasst: 03.01.2007 18:13
von keen
thx