[TYPO3-shop] Empty category

Franz Holzinger franz at fholzinger.com
Sat Mar 8 07:25:36 CET 2008


Simon Browning a écrit :

> Secondary Palette activated, no hidden option.  Not in the menu popup
> either when looking in list view.
> 
> I have:  Title, Subtitle, Confirmation Email, & Image.  Am I missing
> others?  We're running 2.6, but its been upgraded a few times, I'm
> wondering if something has gotten hosed.

So this is missing in version 2.6.0.

Add this in your tca.php file:

$TCA['tt_products_cat'] = Array (
	'ctrl' => $TCA['tt_products_cat']['ctrl'],
	'interface' => Array (
		'showRecordFieldList' => 'hidden,title, subtitle, image, email_uid'
	),
	'feInterface' => $TCA['tt_products_cat']['feInterface'],
	'columns' => Array (
		'hidden' => Array (
			'exclude' => 1,
			'label' => 'LLL:EXT:lang/locallang_general.php:LGL.hidden',
			'config' => Array (
				'type' => 'check'
			)
		),
...


- Franz


More information about the TYPO3-project-tt-products mailing list