Bug #76684
closedFluid styled content - menu CE - section index shows only elements from colPos 0
0%
Description
The section menu CE configured to type 3 (section index) takes into account content elements from colPos == 0.
This is because the viewhelper typo3/sysext/fluid_styled_content/Classes/ViewHelpers/Menu/SectionViewHelper.php
sets the default value for argument "column" to 0 (empty would mean to take into account CE's from all columns).
So currently if you use different colPoses than 0 section index will not show any link.
There are 2 solutions:
1. change default value in the viewhelper
2. change template to pass empty column in
typo3/sysext/fluid_styled_content/Resources/Private/Partials/Menu/Type-3.html
<ce:menu.section pageUid="{page.uid}" as="contentElements" type="header">
to
<ce:menu.section pageUid="{page.uid}" as="contentElements" type="header" column="">
tested in 7.6.9
Updated by Tymoteusz Motylewski over 8 years ago
3rd solution:
3. add a field in the CE to allow user setting colPos
Updated by Riccardo De Contardi over 7 years ago
As far as I can see it has been solved on version 8.7-dev (latest master): the menu "Section Index" contains the CEs inside all columns, not only the ones with colPos=0.
but I am not able to understand in what order they are considered...
Updated by Georg Ringer over 6 years ago
- Status changed from New to Resolved
solved in 8 + 9, therefore I am closing it, won't be changed for 7