MyBB.de Forum
Überschrift in Portal wegmachen?! - 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: Überschrift in Portal wegmachen?! (/thread-12009.html)



Überschrift in Portal wegmachen?! - rayZor - 06.01.2009

Wiedermal eine Frage von mir Wink

Wie kann ich die Überschrift im Portal wegmachen, ohne, dass es Auswirkungen im Index hat? Soweit ich gesehen hab, hängt das in den Templats bei der Navi zusammen.

Habe euch mal ein Screenshot gemacht und markiert, was ich weg haben möchte.


RE: Überschrift in Portal wegmachen?! - Michael - 06.01.2009

Öffne die Datei inc/functions.php und suche nach:
PHP-Code:
$contents str_replace('<navigation>'build_breadcrumb(1), $contents); 
Ersetzen durch:
PHP-Code:
if(basename($_SERVER['PHP_SELF']) != "portal.php")
{
    
$contents str_replace('<navigation>'build_breadcrumb(1), $contents);
}
else
{
    
$contents str_replace('<navigation>'''$contents);




RE: Überschrift in Portal wegmachen?! - rayZor - 06.01.2009

Größes Dankeschön !

Genauso, wie ich es mir vorgestellt habe.

Hier wird einem aber echt immer geholfen. Top Community Wink