MyBB.de Forum
Geburtstagsanzeige für Gäste ausblenden - Druckversion

+- MyBB.de Forum (https://www.mybb.de/forum)
+-- Forum: Archiv (https://www.mybb.de/forum/forum-57.html)
+--- Forum: MyBB 1.6.x (https://www.mybb.de/forum/forum-58.html)
+---- Forum: Allgemeiner Support (https://www.mybb.de/forum/forum-59.html)
+---- Thema: Geburtstagsanzeige für Gäste ausblenden (/thread-16808.html)



Geburtstagsanzeige für Gäste ausblenden - Paccy - 24.08.2010

Nach dem Upgrade auf 1.6 war das Fenster mit den Statistiken (wer ist online, Geburtstage etc.) wieder für die Gäste sichtbar. Sad

Deshalb nahm ich den Tipp von damals wieder vor: https://www.mybb.de/forum/thread-7048-post-52295.html#pid52295

Aber es funktioniert nicht komplett. Die Anzeige "Wer hat heute Geburtstag" ist weiterhin auch für Gäste zu sehen. Wie kann ich es so ändern, daß Gäste das nicht, Nutzer aber schon sehen können?


RE: Geburtstagsanzeige für Gäste ausblenden - linwinman - 24.08.2010

Hallo Paccy,

ersetze hierfür in der Datei "index.php"
PHP-Code:
        eval("\$birthdays = \"".$templates->get("index_birthdays")."\";"); 
durch
PHP-Code:
        if($mybb->user['uid'] != "0"
        {
            eval(
"\$birthdays = \"".$templates->get("index_birthdays")."\";");
        } 



RE: Geburtstagsanzeige für Gäste ausblenden - Paccy - 24.08.2010

Dort steht aber:

PHP-Code:
if($mybb->user['uid'] >= "1") {
            eval(
"\$bdays .= \"".$templates->get("index_birthdays_birthday"10)."\";");
            ++
$bdaycount

Wie muß ich das ändern? BTW: Danke schon mal für die Hilfe!


RE: Geburtstagsanzeige für Gäste ausblenden - linwinman - 24.08.2010

Das ist aber nicht die genannte Zeile. Wink

Hier noch einmal der gesamte Code-Block (~ Ze. 218):
PHP-Code:
    // If there are one or more birthdays, show them.
    
if($bdaycount || $hiddencount 0)
    {
        
# 2010-08-24 >> https://www.mybb.de/forum/thread-16808.html
        
if($mybb->user['uid'] != "0"
        {
            eval(
"\$birthdays = \"".$templates->get("index_birthdays")."\";");
        }
    }