2016-01-06 33 views
0

當編輯在TYPO3圖像內容元素,通常有一個標籤「外觀」與圖像尺寸,取向,位置等選項以我安裝該選項卡不顯示,而是一個「無名」選項卡。我正在使用t3sbootstrap擴展,這種行爲可能是由bootstrap引起的。TYPO3 6.2:標籤「外觀」消失(也許通過t3sbootstrap擴展引起的?)

有誰知道我怎樣才能使外觀選項卡可見且可以再次使用?我搜索了互聯網,但到目前爲止沒有發現任何有用的信息。謝謝你的幫助!

這裏是我的後臺截圖: appearance tab is missing

+0

如果它是由 「引導」 所致,它是由TYPO3擴展引起的,而不是通過Bootstrap本身來增加一些Bootstrap功能。請澄清在問題中(您使用了哪個擴展名)? – lorenz

+0

這是管理員聯絡的或編輯的看法?有編輯者訪問「外觀」選項卡中的任何字段?如果它顯然有些擴展「損壞」默認TCA管理員的觀點,使用系統>配置模分析TCA,和/或禁用最後安裝的擴展一一(別忘了每次清理系統緩存) – biesior

+0

@lorenz它是像我在文中提到的t3sbootstrap擴展。我將通過將其添加到標題來進行澄清。 – Patito

回答

0

顯然,這個問題是由損壞的TCA引起的。我用系統取得了默認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.appearanceLLL: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'; 

結果

完成這些修改後,結果如下:

result

+0

一些轉介紹這些損失,用你的IDE,找到「有罪」的代碼,並考慮禁用它 – biesior