fluid_styled_content Templates überschreiben
Aus gegebenen Anlass hier die Lösung für das überschreiben der fluid_styled_content Templates bis TYPO3 7.6 und die geänderte Lösung für TYPO3 8.7.
Bei beiden Lösungen muss vorher das gewünschte Template oder alle aus dem Verzeichnis in ein eigenes unter fileadmin kopiert werden.
typo3/sysext/fluid_styled_content/Resources/Private/Layouts
typo3/sysext/fluid_styled_content/Resources/Private/Partials
typo3/sysext/fluid_styled_content/Resources/Private/Templates
TYPO3 bis 7.6
Im Anschluß muss bei TYPO3 bis zu der Version 7.6 diese Templates folgend verknüpft werden. Pfade natürlich eurer Umgebung anpassen. Das ganze kommt in euer TypoScript Setup.
lib.fluidContent {
templateRootPaths {
100 = fileadmin/template/Resources/Private/Templates/
}
partialRootPaths {
100 = fileadmin/template/Resources/Private/Partials/
}
layoutRootPaths {
100 = fileadmin/template/Resources/Private/Layouts/
}
}
TYPO3 ab 8.7
Für TYPO3 8.7 gab es eine kleine Änderung.
lib.contentElement {
templateRootPaths {
100 = fileadmin/template/Resources/Private/Templates/
}
partialRootPaths {
100 = fileadmin/template/Resources/Private/Partials/
}
layoutRootPaths {
100 = fileadmin/template/Resources/Private/Layouts/
}
}
Im Grunde hat sich nur lib.fluidContent zu lib.contentElement geändert.
Weitere Beiträge
PHP lernen in 5 einfachen Schritten
TYPO3 | Frontend Sprachwechsler realURL konform nur mit TypoScript
Wordpress | Die Anzeige von Inhalten mit Conditional Tags selbst steuern.
TYPO3 - Eine News mit Kategorien über Powermail-Formular erstellen