kleine-Araberstute
Hallo!
Ich wusste nicht, wonach ich suchen sollte, deswegen habe ich auch nichts gefunden. Wenn es so einen Thread schon gibt, bitte ich um Entschuldigung.
Und zwar: In der Seitentabelle würde ich gerne eine Anzeige einbauen, in der angezeigt ist, ob der Administrator gerade online oder offline ist. Theoretisch müsste das mit dem Scripsel gehen, was immer im Profil/in der Threadanzeige ist neben "PN senden" etc, wisst ihr, was ich meine?
Aber praktisch weiß ich nicht, wie dieser Codeschnipsel aussieht ...
Ich hoffe, mir kann jemand helfen
Liebe Grüße
Kerstin
kleine-Araberstute
Ähm ... *rot werd* ... und wo finde ich die?
edit:
So, ich hab ihn mir angesehen ... habe aber ehrlich gesagt keinen Plan, wie ich das jetzt anpassen müsste ...
kleine-Araberstute
*verzweifelt push*
Tut mir Leid, aber die Frage besteht noch
kleine-Araberstute
Wie ist denn dieser Code-Schnipsel? Wenn ich den finden würde ...
Bindestrich
Stell mal den Code rein, bitte.
kleine-Araberstute
Von welcher Datei denn? Ich weiß leider nicht mal, wo ich suchen soll
Bindestrich
Ich würde mal sagen vom Profil, da ist die Anzeige ja Standartmäßig drin.
kleine-Araberstute
Dann wäre das der Code vom profile-template:
| code: |
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64:
65:
66:
67:
68:
69:
70:
71:
72:
73:
74:
75:
76:
77:
78:
79:
80:
81:
82:
83:
84:
85:
86:
87:
88:
89:
90:
91:
92:
93:
94:
95:
96:
97:
98:
|
{!DOCTYPE}
<html>
<head>
<title>$master_board_name - Profil von $user_info[username]</title>
$headinclude
</head>
<body id="bg">
$header
<tr bgcolor="{tablecolora}" id="tablea">
<td><table cellpadding=0 cellspacing=0 border=0 width="100%">
<tr>
<td><smallfont><b><a href="index.php?sid=$session[hash]">$master_board_name</a> » Profil von $user_info[username]</b></font></td>
<td align="right"><smallfont><b>$usercbar</b></font></td>
</tr>
</table></td>
</tr>
</table><br>
<table cellpadding=4 cellspacing=1 border=0 width="{tableinwidth}" bgcolor="{tableinbordercolor}">
<tr bgcolor="{tabletitlecolor}" id="tabletitle">
<td colspan=2><table width="100%" border=0 cellpadding=0 cellspacing=0>
<tr>
<td width="100%"><normalfont color="{fontcolorsecond}"><b>Profil von $user_info[username]</b></font></td>
<td width="200" align="center" nowrap><normalfont color="{fontcolorsecond}"><b>Avatar/Infotext</b></font></td>
<tr>
</table></td>
</tr>
<tr bgcolor="{tablecolora}" id="tablea">
<td width="100%"><table width="100%">
<tr>
<td><normalfont><B>Registriert am:</B></font></td>
<td><normalfont>$regdate</font></td>
</tr>
<tr>
<td valign="top"><normalfont><B>Rang:</B></font></td>
<td><normalfont>$user_info[ranktitle] $rankimages</font></td>
</tr>
<tr>
<td><normalfont><B>Beiträge:</B></font></td>
<td><normalfont>$user_info[userposts] ($postperday pro Tag)</font></td>
</tr>
<tr>
<td colspan=2><hr width="100%" color="{tableinbordercolor}" noShade size=1></td>
</tr>
<tr>
<td><normalfont><B>ICQ Nummer:</B></font></td>
<td><normalfont>$user_info[icq]</font></td>
</tr>
<tr>
<td><normalfont><B>AIM Screenname:</B></font></td>
<td><normalfont>$user_info[aim]</font></td>
</tr>
<tr>
<td><normalfont><B>YIM Screenname:</B></font></td>
<td><normalfont>$user_info[yim]</font></td>
</tr>
<tr>
<td><normalfont><B>MSN Screenname:</B></font></td>
<td><normalfont>$user_info[msn]</font></td>
</tr>
<tr>
<td><normalfont><B>eMail:</B></font></td>
<td><normalfont>$useremail</font></td>
</tr>
<tr>
<td><normalfont><B>Homepage:</B></font></td>
<td><normalfont>$userhomepage</font></td>
</tr>
<tr>
<td colspan=2><hr width="100%" color="{tableinbordercolor}" noShade size=1></td>
</tr>
<tr>
<td><normalfont><b>Geschlecht:</b></font></td>
<td><normalfont>$gender</font></td>
</tr>
<tr>
<td><normalfont><b>Geburtstag:</b></font></td>
<td><normalfont>$birthday</font></td>
</tr>
$hr
$profilefields
</table></td>
<td width="200" align="center" nowrap>$useravatar<br><normalfont>$user_text</font><p>$user_online</p></td>
</tr>
<tr bgcolor="{tabletitlecolor}" id="tabletitle">
<td colspan=2><table width="100%" border=0 cellpadding=0 cellspacing=0>
<tr>
<td><normalfont color="{fontcolorsecond}"><B>Kontaktaufnahme:</B></font>
<td align="right">$btn_email $btn_pm $btn_search <a href="usercp.php?action=buddy&add=$user_info[userid]&sid=$session[hash]"><img src="{imagefolder}/homie.gif" border=0 alt="Nehmen Sie $user_info[username] in Ihre Freundesliste auf"></a></td>
</tr>
</table></td>
</tr>
</table>
$footer
</body>
</html>
|
|
kleine-Araberstute
Ich möchte oben in einer Tabelle unterm Header die Anzeige haben, ob der Administrator online oder offline ist.
kleine-Araberstute
Danke! Ich werd's mal probieren und wenn nicht, schreie ich