Bug #16643
closedTCAdefaults.pages.hidden=1 doesn't always hide pages
0%
Description
If the newly created page is the first page on the level, its 'Hide page' checkbox is checked by default.
Otherwise, putting it after any other page on the same level won't get 'Hide page' checked automatically.
http://lists.typo3.org/pipermail/typo3-english/2006-August/028337.html
(issue imported from #M4388)
Updated by Graham Solomon about 18 years ago
Don't think this is a bug, the hidden flag is simply being inherited by the page above it, which will override the TSconfig you posted above, you can use the below TCA below to remove the hidden field from this list of fields which get their value inherited, just remove 'hidden' from the list.
$TCA['pages']['ctrl']['useColumnsForDefaultValues'] = 'doktype,fe_group,hidden';
Updated by John Angel about 18 years ago
I've put in ext_tables.php:
$TCA['pages']['ctrl']['useColumnsForDefaultValues'] = str_replace(array(',hidden', 'hidden'), '', $TCA['pages']['ctrl']['useColumnsForDefaultValues']);
but it still doesn't work.
I think that in Live workspace there has to be hidden page as default always, until the whole page is completed. Then you can un-hide it.
Updated by Noel Bossart almost 14 years ago
Duplicate of this one: http://bugs.typo3.org/view.php?id=1428