2016-11-23 4 views
2

私は実際にはTypo 7.6.12のtypo3テンプレートで作業しています。 私の問題は、左、右、または罫線からコンテンツを取得できないことです。ノーマルのみが動作しています。Typo3 styles.content.getLeft

私の考えは、ユーザーが左の列のフッター要素と通常の列の基本的な内容を編集できるということです。私のコードザッツ

... 
10 = FLUIDTEMPLATE 
10 { 
file = fileadmin/templates/gtstemplate/index.html 
layoutRootPath = fileadmin/templates/gtstemplate/layouts/ 
partialRootPath = fileadmin/templates/gtstemplate/html/partials/ 

variables { 
    content < styles.content.get 

    footer < styles.content.getLeft 
    footer.slide = -1 
    } 
} 
... 

と私のhtmlコード。

<div id="containerStart" class="container"> 
    <f:format.html parseFuncTSPath="">{content}</f:format.html> 
</div> 

<footer> 
    <f:format.html parseFuncTSPath="">{footer}</f:format.html> 
    <f:debug title="Results of customers query">{footer}</f:debug> 
</footer> 

footer.slide = -1私はすべてのページでフッターモジュールを継承したいと考えています。

モジュールを使用すると、通常の列が問題で動作するため、実際には混乱します。しかし、他の列は機能しません。 デバッグによってNULLが出力されます。古いTypo3バージョンでは問題なく動作しました。

CSSコンテンツが含まれています。

誰かが何らかのアイディアを持っていれば涼しいでしょう。 最高のあなたに感謝します。

答えて

5

あなたはcss_styled_contentまたはfluid_styled_contentが含まれていますか? fluid_styled_contentは、最新の拡張機能であり、広くと互換性があります。css_styled_content

fluid_styled_contentなしgetLeft成分を持っています!あなたは簡単にそれを自分で定義することができます。

styles.content { 
    getLeft < .get 
    getLeft.select.where = colPos = 1 
} 

スタイルに詳細コンポーネントを検討するのTypoScriptオブジェクトブラウザを使用してください。

+0

ありがとう、ありがとうございます。 –