Actions
Bug #59636
closedTCEFORM.tt_content.menu_type / removeItems 0 => mod.wizards hidden
Status:
Closed
Priority:
Must have
Assignee:
-
Category:
FormEngine aka TCEforms
Target version:
-
Start date:
2014-06-17
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
6.2
PHP Version:
Tags:
Complexity:
Is Regression:
No
Sprint Focus:
Description
When removing menu types 0, the menu item in wizard (displayed when creating a new content) is hidden :
TCEFORM.tt_content.menu_type {
removeItems = 0
}
This is also the same when adding items or removing an other one :
TCEFORM.tt_content.menu_type {
removeItems = 0,1
addItems.21 = Menu test
}
But it works fine when removing others items :
TCEFORM.tt_content.menu_type {
removeItems = 1
}
or
TCEFORM.tt_content.menu_type {
removeItems = 1,2,3,4,5,6,7,8
}
Files
Updated by Riccardo De Contardi over 9 years ago
- File cattura.png cattura.png added
- Status changed from New to Closed
Cannot reproduce in 6.2.12; my test:
1) add to Page TS Config of home:
TCEFORM.tt_content.menu_type { removeItems = 0 }
2) create a content element, and "Special Menu" is visible (see attached screenshot)
3) as expected, the option list lack the "0" item:
<option value="1">Menu of subpages of selected pages</option> <option value="4">Menu of subpages of selected pages including abstracts</option> <option value="7">Menu of subpages of selected pages including sections</option> <option value="2">Sitemap</option> <option value="8">Sitemaps of selected pages</option> <option value="3">Section index (page content marked for section menus)</option> <option value="5">Recently updated pages</option> <option value="6">Related pages (based on keywords)</option> <option value="categorized_pages">Pages for selected categories</option> <option value="categorized_content">Content elements for selected categories</option>
Actions