Seite 1 von 1

Title ändern

Verfasst: 15.10.2015 19:56
von dom_beta
Hallo,

ich würde gerne den Titel des Forums ändern.

Der Titel ist ja in dem Schema:

<title> <Name des Forums> --- Foren-Übersicht</title>

aufgebaut.

Ich würde das gerne so hinbekommen, dass dies umgekehrt der Fall ist.

Also:

<Foren-Übersicht> -- Forum --- <Name der Seite>

Re: Title ändern

Verfasst: 15.10.2015 22:26
von tas2580
Schau mal in die /styles/prosilver/template/overall_header.html.

Gruß Tobi

Re: Title ändern

Verfasst: 15.10.2015 22:27
von Lehrling
Öffne die Datei template/overall_header.html und finde folgende Stelle:

Code: Alles auswählen

<title><!-- IF UNREAD_NOTIFICATIONS_COUNT -->({UNREAD_NOTIFICATIONS_COUNT}) <!-- ENDIF --><!-- IF not S_VIEWTOPIC and not S_VIEWFORUM -->{SITENAME} - <!-- ENDIF --><!-- IF S_IN_MCP -->{L_MCP} - <!-- ELSEIF S_IN_UCP -->{L_UCP} - <!-- ENDIF -->{PAGE_TITLE}<!-- IF S_VIEWTOPIC or S_VIEWFORUM --> - {SITENAME}<!-- ENDIF --></title>
Ersetze sie mit diesem Code:

Code: Alles auswählen

<title><!-- IF UNREAD_NOTIFICATIONS_COUNT -->({UNREAD_NOTIFICATIONS_COUNT}) <!-- ENDIF -->{PAGE_TITLE} - <!-- IF not S_VIEWTOPIC and not S_VIEWFORUM -->{SITENAME}<!-- ENDIF --><!-- IF S_IN_MCP --> - {L_MCP}<!-- ELSEIF S_IN_UCP --> - {L_UCP} <!-- ENDIF --><!-- IF S_VIEWTOPIC or S_VIEWFORUM -->{SITENAME}<!-- ENDIF --></title>