Warning: file_get_contents(/data/phpspider/zhask/data//catemap/0/drupal/3.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Typo3 流体页面模板:后端布局不';不变_Typo3_Fluid_Typo3 6.2.x - Fatal编程技术网

Typo3 流体页面模板:后端布局不';不变

Typo3 流体页面模板:后端布局不';不变,typo3,fluid,typo3-6.2.x,Typo3,Fluid,Typo3 6.2.x,我已经创建了一个包含所有模板和布局的扩展。我工作正常,但后端布局未更改为我在模板中定义的网格布局: {namespace vhs=FluidTYPO3\Vhs\ViewHelpers} {namespace flux=FluidTYPO3\Flux\ViewHelpers} <f:layout name="Default" /> <f:section name="Configuration"> <flux:form id="Defaul

我已经创建了一个包含所有模板和布局的扩展。我工作正常,但后端布局未更改为我在模板中定义的网格布局:

  {namespace vhs=FluidTYPO3\Vhs\ViewHelpers}
  {namespace flux=FluidTYPO3\Flux\ViewHelpers}

  <f:layout name="Default" />

  <f:section name="Configuration">
     <flux:form id="Default" label="Homepage">
        <flux:grid>
           <flux:grid.row>
              <flux:grid.column colPos="0" name="Content" label="Main content" />
              <flux:grid.column colPos="1" name="Sidebar" label="Sidebar" />
           </flux:grid.row>
        </flux:grid>
     </flux:form>
  </f:section>


  <f:section name="Main">
  <div id="main_content">
     <vhs:content.render column="0" />
  </div>
  <div id="aside">
     <vhs:content.render column="1" />
  </div>
  </f:section>
我也有同样的问题

解决方案: 编辑根页面->外观选项卡->后端布局->Fluidpages

也有同样的问题

解决方案: 编辑根页面->外观选项卡->后端布局->Fluidpages

Uff。。。除了页面布局之外,您还必须在外观选项卡中选择“fluidpages”。。。sry,我已经监督过了。Uff。。。除了页面布局之外,您还必须在外观选项卡中选择“fluidpages”。。。sry,我已经监督过了。
plugin.tx_myext.view {
    templateRootPath = EXT:tx_myext/Resources/Private/Templates/
    partialRootPath = EXT:tx_myext/Resources/Private/Partials/
    layoutRootPath = EXT:tx_myext/Resources/Private/Layouts/    
}