我使用Fluid powered TYPO3進行了TYPO3安裝6.2.9 - 預配置分發「Site」的第一步很好。我的網站/網頁模板已安裝,我添加了所有TypoScript的東西。流體動力TYPO3 FLUX Fluidcontent - 前端無輸出?
現在我想用FLUX的FLUIDCONTENT(FCE)。我添加了一個新的模板文件TeaserOne.html
,我嘗試使用分佈Content.html
中的佈局。
現在我可以在後端看到並寫入我的輸入字段,但是我在前端沒有輸出?我還需要什麼?
我只看到內容元素標題。不是FLEXform。 我正在使用最新版本的flux (7.1.2)
,fluidpages (3.1.2)
,fluidcontent (4.1.1)
,fluid_core (1.0.2)
和vhs (2.1.4)
。 靜態模板「fluidcontent_core」已通過預配置分發包含在內。
myext /資源/個人/模板/ TeaserOne.html
<div xmlns="http://www.w3.org/1999/xhtml" lang="en"
xmlns:f="http://typo3.org/ns/TYPO3/Fluid/ViewHelpers"
f:schemaLocation="https://fluidtypo3.org/schemas/fluid-master.xsd"
xmlns:flux="http://typo3.org/ns/FluidTYPO3/Flux/ViewHelpers"
flux:schemaLocation="https://fluidtypo3.org/schemas/flux-master.xsd">
<f:layout name="Content" />
<f:section name="Configuration">
<flux:form id="fluidcontenttest" options="{icon: 'Icons/Content/Hello.gif', group: 'New Elements'}">
<flux:field.text name="teasertext" label="hier lorem eintragen" rows="5" cols="30" required="FALSE" />
</flux:form>
</f:section>
<f:section name="Preview">
<table width="100%">
<tr>
<td width="30%">Ausgabe:</td>
<td width="70%">
<f:format.crop maxCharacters="100">{teasertext}</f:format.crop>
</td>
</tr>
</table>
</f:section>
<f:section name="Main">
<h3>TEST: I am a content element! But no Output?</h3>
<p> {teasertext} </p>
</f:section>
</div>
myext /資源/個人/設計/ Content.html
<f:layout name="Content" />
<f:render section="Main" />
似乎缺少tt_content.fluidcontent呈現。您是否在您的根頁面(TYPO3後端)中包含fluidcontent_core static? – Christoph 2015-02-06 13:39:35
嗨,是的,靜態模板「fluidcontent_core」是通過預先配置的分發包含的。我嘗試使用「fluidbootstraptheme」,但我有def。沒有前端輸出。我的裝置一定有問題嗎? – user2310852 2015-02-06 13:46:08
你能給我一個TS設置的截圖tt_content – Christoph 2015-02-06 14:48:15