MyBB.de Forum
index - birthday, stats, online - Druckversion

+- MyBB.de Forum (https://www.mybb.de/forum)
+-- Forum: Anpassungen (https://www.mybb.de/forum/forum-47.html)
+--- Forum: Theme-Diskussionen (https://www.mybb.de/forum/forum-84.html)
+--- Thema: index - birthday, stats, online (/thread-8091.html)



index - birthday, stats, online - Murphy - 20.12.2007

Moin...

Ich möchte unten, in dem Forum-Statistik Teil, noch eine kleine Abtrennung machen, wie auf diesem Screen:

   

Ich habe das ganze in dem index_birthdays_birthday Template so ausprobiert:

Code:
<tr>
<td class="trow1">test</td>
<td class="trow2">
{$comma}<a href="member.php?action=profile&uid={$bdayuser['uid']}">{$bdayuser['username']}</a>{$age}</td>
</tr>

Doch dann kam leider das raus:

   


RE: index - birthday, stats, online - StefanT - 20.12.2007

Du musst das bei allen Teilen der Statistik verändern. (Überschriften mit colspan="2")


RE: index - birthday, stats, online - Murphy - 24.12.2007

Morgen.

Ich habe nun folgendes Problem, wenn 2 User gleichzeitig Geburtstag haben:

   

Ich habe folgenden Code dazu benutzt (index_birthdays):

Code:
<tr><td class="tcat" colspan="2"><strong>{$lang->todays_birthdays}</strong></td></tr>
{$bdays}

In der index_birthdays_birthday:

Code:
<tr>
<td class="trow1"><center><img src="{$mybb->settings['bburl']}/images/orange/toplinks/index_birthdays.gif" alt="birthdays"></center></td>
<td class="trow2"><div class="birthday">
{$comma}<a href="member.php?action=profile&uid={$bdayuser['uid']}">{$bdayuser['username']}</a>{$age}</td>
</tr></div>



RE: index - birthday, stats, online - linwinman - 24.12.2007

Hallo Murphy,

versuche es in "Startseiten Templates >> index_birthdays" einmal mit diesem Code:
Code:
<tr>
<td class="tcat" colspan="2"><strong>{$lang->todays_birthdays}</strong></td>
</tr>
<tr>
<td class="trow1"><img src="images/orange/toplinks/index_birthdays.gif" border="0" /></td>
<td class="trow2"><span class="smalltext">{$bdays}</span></td>
</tr>

>>    

HTH.


RE: index - birthday, stats, online - Murphy - 24.12.2007

linwinman schrieb:Hallo Murphy,

versuche es in "Startseiten Templates >> index_birthdays" einmal mit diesem Code:
Code:
<tr>
<td class="tcat" colspan="2"><strong>{$lang->todays_birthdays}</strong></td>
</tr>
<tr>
<td class="trow1"><img src="images/orange/toplinks/index_birthdays.gif" border="0" /></td>
<td class="trow2"><span class="smalltext">{$bdays}</span></td>
</tr>

>>

HTH.

Ah.
Danke Dir Smile


RE: index - birthday, stats, online - Murphy - 24.12.2007

Sorry wegen dem Doppelpost.
Nur ich möchte bei dem Danke Plugin auch eine Abtrennung machen:

https://www.mybb.de/forum/attachment.php?aid=2673

Jetzt hab ich mir gedacht, dass man das ganze mit trow1 und trow2 lösen kann.

Nur wo soll ich das ganze in der php-datei machen, und wie sieht der Code dann aus. Ich würde sage, dass ich das hier ändern muss:

Code:
//Show or hide thanks row
    if(!$entries)
    {
        $css_display = "none";
    } else {
        $css_display = "";
    }

    $display = "<tr id=\"displayThxtr{$post['pid']}{$post['tid']}\" style=\"display:{$css_display}\"><td class=\"{$altbg}\" align=\"center\" colspan=\"2\"><div id=\"displayThx{$post['pid']}{$post['tid']}\">{$entries}</div></td></tr>";

Ich hab das schon versucht, nur dann war die ganze Datei kaputt.


RE: index - birthday, stats, online - StefanT - 24.12.2007

Was ist dann an der Datei kaputt? Gibt es eine genaue Fehlermeldung?