2016-03-01 43 views
0

我有以下頁面模板:FluidPages /磁力線結構沒有繼承到子頁面

<div xmlns="http://www.w3.org/1999/xhtml" lang="en" 
    xmlns:f="http://typo3.org/ns/TYPO3/Fluid/ViewHelpers" 
    xmlns:v="http://typo3.org/ns/FluidTYPO3/Vhs/ViewHelpers" 
    xmlns:flux="http://typo3.org/ns/FluidTYPO3/Flux/ViewHelpers"> 

    <f:layout name="Page"/> 

    <f:section name="Configuration"> 
     <flux:form id="standard"> 
      <flux:field.input name="settings.claim1" /> 
      <flux:field.input name="settings.claim2" /> 
      <flux:field.inline.fal name="settings.stageImage" maxItems="1" minItems="0" /> 
     </flux:form> 
     <flux:grid> 
      <!-- Edit this grid to change the "backend layout" structure --> 
      <flux:grid.row> 
       <flux:grid.column colPos="0" name="main"/> 
      </flux:grid.row> 
     </flux:grid> 
    </f:section> 

    <f:section name="Main"> 
     <div class="page-wrapper"> 
      <f:render partial="Header" section="Content"/> 
      <f:render partial="Stage" section="Content" arguments="{_all}" /> 
      <f:render partial="Breadcrumb" section="Content"/> 
      <v:content.render column="0"/> 
     </div> 
    </f:section> 
</div> 

這是唯一一個我只有我的根頁面上選擇。所有其他頁面都繼承該模板。

我必須做什麼,配置的值是繼承到子頁面?我已經對ViewHelper參考中建議的字段嘗試了inherit =「true」,但我不知道如果「ConfigurationProvider啓用了繼承」信息「」如何處理。

我使用T3 7.6和通量的最新版本TER,Fluidpages等

回答

0

當編輯根頁,你設置的子頁面到fluidpages的後端佈局?

Set backend layout to fluidpages in layout tab

+0

很抱歉這麼晚纔回復...一直以來生病。 是的,我已經設置了建議的設置。我也在「頁面佈局」下檢查了兩種佈局 – tpinne