0
如何根據佈局使用多個覆蓋?基於佈局的Typoscript覆蓋
一次性使用目前是這樣的:
tt_content.image.20.1 {
file.width.override {
override = 200c
override.if {
equals.field = layout
value = 1
}
}
}
但我需要爲不同的佈局值不同寬度的覆蓋。
我想我需要做這樣的事情不正確的代碼:
#does not work
tt_content.image.20.1.file.width = CASE
tt_content.image.20.1.file.width {
key.field = layout
1 = TEXT
1.value = 200c
2 = TEXT
2.value = 400c
}
這是完美的,非常感謝! – user500665