In TYPO3 8.7 I am trying to override the file Textpic.html
from fluid_styled_content so that I can use my own rendering for the textpic content element.
As long as I modify the original file inside the extension itself, this is working fine.
However, I want to create my own copy of this file and use that copy. This is not working - TYPO3 does not use my own version of the file.
Here is what I did:
In the Setup field of my TypoScript template I added:
lib.contentElement.templateRootPaths.100 = /fileadmin/template/Templates/
Then I copied Textpic.html
from fluid_styled_content/Resources/Private/Templates
into my folder /fileadmin/template/Templates
so that it becomes /fileadmin/template/Templates/Textpic.html
.
Any hints, what I might be missing?