Seite 1 von 1

Yahoo-messanger-Button weg geben?!

Verfasst: 06.11.2003 11:40
von wazi
Wie kann man den Button weg geben? Also ich will dort nicht den Button haben, sondern es soll die Nummer ganz normal dort stehen. Nix mit Link oder so. Einfach nur die Nummer, ohne Funktion.
Wo und was muss ich da bitte ändern???

Verfasst: 06.11.2003 11:51
von PhilippK
Meinst du jetzt im Profil oder unten im Beitrag?

Gruß, Philipp

Verfasst: 06.11.2003 11:59
von wazi
PhilippK hat geschrieben:Meinst du jetzt im Profil oder unten im Beitrag?

Gruß, Philipp
Die Funktion hätt ich gern im Profil weg. Hab nämlich dieses Feld umbenannt in "Telefonnummer" und somit ist die Funktion komplett fürn Hugo für mich.

Verfasst: 06.11.2003 12:22
von PhilippK
Geh in die ./includes/usercp_viewprofile, suche dort

Code: Alles auswählen

$yim_img = ( $profiledata['user_yim'] ) ? '<a href="http://edit.yahoo.com/config/send_webmesg?.target=' . $profiledata['user_yim'] . '&.src=pg"><img src="' . $images['icon_yim'] . '" alt="' . $lang['YIM'] . '" title="' . $lang['YIM'] . '" border="0" /></a>' : '';
$yim = ( $profiledata['user_yim'] ) ? '<a href="http://edit.yahoo.com/config/send_webmesg?.target=' . $profiledata['user_yim'] . '&.src=pg">' . $lang['YIM'] . '</a>' : '';
und ersetze durch

Code: Alles auswählen

$yim_img = ( $profiledata['user_yim'] ) ? $profiledata['user_yim'] : '&nbsp;';
$yim = $yim_img;
Gruß, Philipp

Verfasst: 06.11.2003 12:33
von wazi
PhilippK hat geschrieben:Geh in die ./includes/usercp_viewprofile, suche dort

Code: Alles auswählen

$yim_img = ( $profiledata['user_yim'] ) ? '<a href="http://edit.yahoo.com/config/send_webmesg?.target=' . $profiledata['user_yim'] . '&.src=pg"><img src="' . $images['icon_yim'] . '" alt="' . $lang['YIM'] . '" title="' . $lang['YIM'] . '" border="0" /></a>' : '';
$yim = ( $profiledata['user_yim'] ) ? '<a href="http://edit.yahoo.com/config/send_webmesg?.target=' . $profiledata['user_yim'] . '&.src=pg">' . $lang['YIM'] . '</a>' : '';
und ersetze durch

Code: Alles auswählen

$yim_img = ( $profiledata['user_yim'] ) ? $profiledata['user_yim'] : '&nbsp;';
$yim = $yim_img;
Gruß, Philipp
Fettes DANKESCHÖN
Hat geklappt!!! :D