TypoScript:tt_content.menu(站点地图) - 一些项目仅作为文本,添加项目的子链接

时间:2016-01-11 09:44:19

标签: php typo3 typoscript

我的网页上有一个站点地图(tt_content.menu.20.8),我有两个问题:

  1. 我希望显示的某些项目不是链接,而是文本,例如:
  2. enter image description here

    是否可以使用页面ID或东西在typoScript中执行此操作?

    1. 我需要手动添加一些子页面到"菜单项2"那些不在页面树中,可能吗?

1 个答案:

答案 0 :(得分:0)

我可以帮助你1.,有几种选择。您要搜索的是“doNotLinkIt”,您可以使用选项拆分:

NO.doNotLinkIt = || || 1 |*| |*|
#This will unlink the third menu item

或if case:

#Unlinks page with uid 3
NO.doNotLinkIt = 1
NO.doNotLinkIt.if {
  value.field = uid
  equals = 3
}

对于Nr 2:我将不得不问这个问题,为什么你甚至想这样做。我建议你在pagetree中创建占位符项并使用它们。