.
Hello it's hard to explain ...
If you're using TYPO3 7.6 (w. fluid styled content
) with the module "file links", you can upload single files, but you can also work with the "file collection" to organize your downloads in a sys-folder.
There're three different types of "file collections". 1. Static selection of files
and 2. Folder from Storrage
and 3. Select by category
.
Now you've upload and edit your FAL-files (metadata, s. image below) with a new title and description. These fields e.g. {file.title}
will show with fluid_styled_content
(Uploads.html), if you're using a single download or a file collection static selection of files
, but not, if you're using Folder from storrage
! The title won't show, you only see the {file.name}
..?
I'm using the standard Uploads.html
form FSC with an extra condition.
Test <f:debug>{file.title}</f:debug>
, see below. There's no Title from files via "folder from storrage".
...
<f:if condition="{file.title}">
<f:then>
{file.title}
</f:then>
<f:else>
{file.name}
</f:else>
</f:if>
...
Is it a bug or a feature for TYPO3 8
?
I hope my pictures can explain this behavior better.