我有TYPO3版本6.2.4。
我想将后端的列重命名为left
,normal
,right
和border
至main
,microsite
和{{1 }}
我已加入mobile
extTables.php
我在后端删除了按钮的所有缓存,我也手动删除了临时文件夹。
我可以在TYPO3后端的配置中看到正确的名称,但是当我打开页面时,仍有旧名称。
感谢您的帮助。
答案 0 :(得分:3)
在TYPO3 6.0+中,您可以使用简单的Backend Layout
记录,只需使用可视化编辑器在您的存储文件夹中创建它,然后在页面的属性中选择新的布局,外观>后端布局(仅限此页面)和后端布局(此页面的子页面)
您想要的样本配置如下:
backend_layout {
colCount = 1
rowCount = 3
rows {
1 {
columns {
1 {
name = Main
colPos = 0
}
}
}
2 {
columns {
1 {
name = Mobile
colPos = 1
}
}
}
3 {
columns {
1 {
name = MicroSite
colPos = 2
}
}
}
}
}