-
Notifications
You must be signed in to change notification settings - Fork 73
Closed
Description
Probably related to #581 and/ or #582
We have a FLUIDTEMPLATE with a content column that has slide activated
relatedContent = CONTENT
relatedContent {
table = tt_content
select {
where = colPos = 5
orderBy = sorting
}
slide = -1
}
A page has a container in that column, the subpages should inherit that container
After the update, the children are missing on subpages that render the container from the parent page.
The container itself is inherited, but the children are lost.
Although we use a custom ContainerProcessor, I also tested this with EXT:container's shipped processor:
tt_content.row-related =< lib.containerElement
tt_content.row-related {
templateName = RowRelated
dataProcessing {
90 = B13\Container\DataProcessing\ContainerProcessor
90 {
colPos = 100
as = children_100_default
}
100 = MyVendor\MyExt\Frontend\DataProcessing\ContainerGalleryProcessor
100 {
colPos = 100
as = children_100_custom
elementsPerRow = {$plugin.myext.settings.content.row--related.elementsPerRow}
gridRowClasses {
100 =
50 = grid-row-50
33 = grid-row-33
25 = grid-row-25
}
}
}
}
Here's an f:debug of {_all} in the container template
Pinning EXT:container to 3.1.1 is a workaround
Metadata
Metadata
Assignees
Labels
No labels

