在TYPO3中编辑图像内容元素时,通常会有一个标签“外观”,其中包含图像大小,对齐方式,位置等选项。在我的安装中,该选项卡未显示,而是显示“无名”标签。我正在使用t3sbootstrap扩展,这种行为可能是由bootstrap造成的。
有谁知道如何让外观标签再次可见和可用?我搜索了互联网但到目前为止没有找到任何帮助。谢谢你的帮助!
以下是我后端的截图:
答案 0 :(得分:0)
显然这个问题是由损坏的TCA引起的。我使用System - >对默认TCA进行了以下更改:配置:
要恢复布局,顶部和底部边距和框架的选项,我设置了以下内容:
$TCA['tt_content']['palettes']['frames']['showitem'] = 'layout;LLL:EXT:cms/locallang_ttc.xlf:layout_formlabel, spaceBefore;LLL:EXT:cms/locallang_ttc.xlf:spaceBefore_formlabel, spaceAfter;LLL:EXT:cms/locallang_ttc.xlf:spaceAfter_formlabel, section_frame;LLL:EXT:cms/locallang_ttc.xlf:section_frame_formlabel';
要恢复外观标签标题:
在$TCA['tt_content']['types']['image']['showitem']
我将LLL:EXT:frontend/Resources/Private/Language/locallang_ttc.xlf:tabs.appearance
更改为LLL:EXT:cms/locallang_ttc.xlf:tabs.appearance
要恢复图像调整:
在$TCA['tt_content']['types']['image']['showitem']
我在框架部分后面立即将--div--
更改为--palette--
,并在框架部分之后添加了LLL:EXT:cms/locallang_ttc.xlf:palette.image_settings;image_settings, --palette--;LLL:EXT:cms/locallang_ttc.xlf:palette.imageblock;imageblock, --div--;
。
结果如下:
$TCA['tt_content']['types']['image']['showitem'] = '--palette--;LLL:EXT:cms/locallang_ttc.xlf:palette.general;general, --palette--;LLL:EXT:cms/locallang_ttc.xlf:palette.header;header, --div--;LLL:EXT:cms/locallang_ttc.xlf:tabs.images, image, --palette--;LLL:EXT:cms/locallang_ttc.xlf:palette.imagelinks;imagelinks, --div--;LLL:EXT:cms/locallang_ttc.xlf:tabs.appearance, --palette--;LLL:EXT:frontend/Resources/Private/Language/locallang_ttc.xlf:palette.frames;frames, --palette--;LLL:EXT:cms/locallang_ttc.xlf:palette.image_settings;image_settings, --palette--;LLL:EXT:cms/locallang_ttc.xlf:palette.imageblock;imageblock, --div--;LLL:EXT:cms/locallang_ttc.xlf:tabs.access, --palette--;LLL:EXT:cms/locallang_ttc.xlf:palette.visibility;visibility, --palette--;LLL:EXT:cms/locallang_ttc.xlf:palette.access;access, --div--;LLL:EXT:cms/locallang_ttc.xlf:tabs.extended, , --div--;LLL:EXT:flux/Resources/Private/Language/locallang.xlf:tt_content.tabs.relation, tx_flux_parent, tx_flux_column, tx_flux_children;LLL:EXT:flux/Resources/Private/Language/locallang.xlf:tt_content.tx_flux_children';
<强>结果强>
进行这些更改后,结果如下: