Diese Fehlermeldung erscheint, wenn man sich in TYPO3 7.6 eine Sitemap anzeigen lassen will:
Could not load partial file. Tried following paths: (…) typo3/sysext/fluid_styled_content/Resources
/Private/Partials/Menu/Type-15″
Ursache ist, dass in der fluid_styled_content Extension eine Template Datei fehlt. Da man den Core nicht verändern sollte, gibt es folgende Lösung:
- Kopiere aus fluid_styled_content die Datei Type-8.html in deinen Template Ordner und benenne sie um in Type-15.html, beispielsweise:
Kopiere von: typo3/sysext/fluid_styled_content/Resources/Private/Partials/Menu/Type-8.html nach: typo3conf/ext/my_template/Resources/Private/Partials/Menu/Type-15.html
- Füge im Template (Bereich Setup) den Pfad zum Partial-Ordner hinzu, beispielsweise:
lib.fluidContent { partialRootPaths { 200 = EXT:my_template/Resources/Private/Partials/ } }