Get contents of page child in TYPO3

I am using Typo3.6.4 on Mac OS.

I want to get the content from an additional page. The content is on the 3rd subpage and should be displayed on the "page" with TypoScript:

Page

-SubPage 1

-SubPage 2

-SubPage 3

I tried this code on Typo3.6.0 with Windows and worked. But not with Typo3.6.4 on Mac OS.

  MIDBLOCK = CONTENT
  MIDBLOCK {
  stdWrap.wrap = |
    table = pages
    select.orderBy = sorting
    # If this element is inserted as sitemap, consider the startingpoint
    select.pidInList.if.isTrue.field = pages
    select.pidInList.field = pages
    renderObj = COA
    renderObj {
      stdWrap.wrap = |

      10 = CONTENT
      10.wrap = <div><h1>|</h1>
      10 {
        table = tt_content
        select.pidInList.field = uid
        select.where = colPos = 1
        select.orderBy = sorting
        renderObj = COA


        #read the bodytext
        renderObj.10 = TEXT
        renderObj.10.field = header
      }

      20 = TEXT
      20.value = Event
      20.typolink.parameter.field = uid


      # Title and link to the page
      30 = TEXT
      30.wrap = </div><div><h2>|</h2>
      30.field = title
      # 2. CONTENT object for reading the first content element
      40 = CONTENT
      40 {
        table = tt_content
        select.pidInList.field = uid
        select.where = colPos = 0
        select.orderBy = sorting
        renderObj = COA


        #read the bodytext
        renderObj.10 = TEXT
        renderObj.10 {
          field = bodytext
          #cut after 20 chars, keep whole words if possible
          crop = 20| ... |1
        }
      }
      # more link
      50 = TEXT
      50.wrap = <br /><br />|</div>
      50.value = > [More]
      50.typolink.parameter.field = uid
    }  
  }
+4
source share
2 answers

I like to answer my question and <3

So, the problem came to the element "css_styled_content", on the first I did not use it, but on the second I used this element, and it does not work.

, , , : D

0

, TypoScript

<INCLUDE_TYPOSCRIPT: source=FILE:EXT:my_ext/Configuration/TypoScript/setup.txt>

TYPO3 6.2. :

<INCLUDE_TYPOSCRIPT: source="FILE:EXT:my_ext/Configuration/TypoScript/setup.txt">
0

All Articles