Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Yes, this is simple. You need to use the TypoScript property "slide":</p> <pre><code>styles.content.getRight.slide = -1 </code></pre> <p>means that TYPO3 walks the rootline until it finds a page where the right column is filled (use getLeft for the left column).</p> <p>So you might want to have the content for the right and left column on your root page and delete the contents in the subpages.</p> <p>Please beware of the following caching issue: If you change the contents on your root page, that doesn't mean that the cache of pages inheriting this content are rebuilt. If you want to clear the whole (!) cache when editing the contents on your root page, put </p> <pre><code>TCEMAIN.clearCacheCmd = all </code></pre> <p>to the Page TS Config of the root page. I don't recommend doing this on bigger sites.</p> <p>There are extensions that help you clear the cache only for a certain branch, e.g. <a href="http://typo3.org/extensions/repository/view/sm_clearcachecm" rel="nofollow">http://typo3.org/extensions/repository/view/sm_clearcachecm</a> and <a href="http://typo3.org/extension-manuals/stg_clearcache/2.1.2/view/" rel="nofollow">http://typo3.org/extension-manuals/stg_clearcache/2.1.2/view/</a>.</p> <p>Edit the answer the question in your comment: If you want to use the slide feature for other columns than the default ones, you can copy and modify the content object:</p> <pre><code>lib.contentCol99 &lt; styles.content.get # copies colPos = 0 lib.contentCol99.select.where = colPos=99 # uses the content from col 99 lib.contentCol99.slide = -1 # walk the rootline until content is found </code></pre> <p>Edit 2: When you're using a FLUIDTEMPLATE, you can use the cObject helper use the content:</p> <pre><code>&lt;f:cObject typoscriptObjectPath="lib.contentCol99"&gt; Lorem ipsum dummy &lt;/f:cObject&gt; </code></pre> <p>With traditional subparts- and marker-based templating, assign the content to your template, e.g.:</p> <pre><code>page = PAGE page.10 = TEMPLATE [...] page.10.subparts.contentCol99 &lt; lib.contentCol99 </code></pre> <p>and use it as a subpart in the template.</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload