无法在TYPO3中呈现模板的文件夹页面内容

时间:2017-05-11 08:12:06

标签: typo3-7.6.x

我为我的模板创建了一个页脚部分的默认列。并使用这个typoscript。

lib.footer = COA
lib.footer {
10 = CONTENT
10 {
    table = tt_content
    select.orderBy = sorting
    select.where = colPos=4
}
}

也试过这个,

lib.footer = CONTENT
lib.footer {
table = tt_content
select.orderBy = sorting
select.where = colPos=4
slide = -1
}

我可以在除文件夹中的页面之外的所有页面中进行渲染。那么,在这种情况下应该是什么解决方案?

Backendview

Outout

1 个答案:

答案 0 :(得分:0)

尝试使用类似的内容来显示内容。

lib.footer = RECORDS
lib.footer {
    source = 1     // add content id
    dontCheckPid = 1
    tables = tt_content
}

对于像AGB |TEST |这样的页脚菜单,请使用下面的typoscript

lib.footermenu = COA
lib.footermenu{
    wrap = <ul>|</ul>

    20 = HMENU
    20 {
        special = directory
        # special.value will contain the page ID of the Footer menu page
        special.value = 20  
        1 = TMENU
        1 {
            target = _self
            NO {
                allWrap = <li>|</li>
            }
        }
    }
}