TYPO3:删除默认包装
TYPO3: Remove default wrapper
我有 TYPO3 (7.6.10)。
我也有tx_news。
我用的是液体。
我想删除内容元素的默认包装器。
我有:
<div><p>Text content</p></div>
<div id="c343"><article>New 1</article> <article>New 2</article> ... </div>
我要:
<p>Text content</p>
<article>New 1</article> <article>New 2</article> ...
我该怎么做?
我在 tsconfig 中试过:
tt_content.stdWrap.innerWrap >
要删除<div id="c343">
,您的解决方案是正确的。
tt_content.stdWrap.innerWrap >
也可以
tt_content.stdWrap.innerWrap.cObject.default.10.cObject.default.value
您可以使用模块 "Template" 中的 TypoScript 对象浏览器并搜索 <div id="c{field:uid}"
您是否清除了前端缓存?
删除 TYPO3 默认 <div id="c343">
包装器 class
和 id
。
使用下面的打字错误
tt_content.stdWrap.innerWrap.cObject.default >
我删除了<div id="c343">
它只适用于这个解决方案:
tt_content.stdWrap.outerWrap.cObject = CASE
tt_content.stdWrap.outerWrap.cObject {
key.field = CType
default = TEXT
default.value =
}
我有 TYPO3 (7.6.10)。 我也有tx_news。 我用的是液体。
我想删除内容元素的默认包装器。
我有:
<div><p>Text content</p></div>
<div id="c343"><article>New 1</article> <article>New 2</article> ... </div>
我要:
<p>Text content</p>
<article>New 1</article> <article>New 2</article> ...
我该怎么做? 我在 tsconfig 中试过:
tt_content.stdWrap.innerWrap >
要删除<div id="c343">
,您的解决方案是正确的。
tt_content.stdWrap.innerWrap >
也可以
tt_content.stdWrap.innerWrap.cObject.default.10.cObject.default.value
您可以使用模块 "Template" 中的 TypoScript 对象浏览器并搜索 <div id="c{field:uid}"
您是否清除了前端缓存?
删除 TYPO3 默认 <div id="c343">
包装器 class
和 id
。
使用下面的打字错误
tt_content.stdWrap.innerWrap.cObject.default >
我删除了<div id="c343">
它只适用于这个解决方案:
tt_content.stdWrap.outerWrap.cObject = CASE
tt_content.stdWrap.outerWrap.cObject {
key.field = CType
default = TEXT
default.value =
}