2015-02-06 67 views
2

我使用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" /> 

Backend

File structure

typoscript

+0

似乎缺少tt_content.fluidcontent呈現。您是否在您的根頁面(TYPO3後端)中包含fluidcontent_core static? – Christoph 2015-02-06 13:39:35

+0

嗨,是的,靜態模板「fluidcontent_core」是通過預先配置的分發包含的。我嘗試使用「fluidbootstraptheme」,但我有def。沒有前端輸出。我的裝置一定有問題嗎? – user2310852 2015-02-06 13:46:08

+0

你能給我一個TS設置的截圖tt_content – Christoph 2015-02-06 14:48:15

回答

2

似乎CType fluidcontent_content的前端渲染配置丟失。您是否將以下內容添加到了typo3conf/AdditionalConfiguration.php中:

<?php 
$GLOBALS['TYPO3_CONF_VARS']['FE']['contentRenderingTemplates'] = array('fluidcontentcore/Configuration/TypoScript/'); 
+0

就是這樣。謝謝克里斯託弗。 – user2310852 2015-02-06 19:38:01