我想在侧边栏上添加一个子菜单在一些选定的页面。它的想法如下:
http://venicexplorer.com/explore-venice/annual-events/carnival-of-venice.html
我如何在TYPO3上做到这一点?
谢谢Prasun
发布于 2020-04-26 20:34:23
对于buildung菜单有两种方式。
1)传统的方法是使用typoscript和HMENU。您可以在这里找到文档:
https://docs.typo3.org/m/typo3/reference-typoscript/master/en-us/ContentObjects/Hmenu/Index.html
2)另一种方法是使用MenuProcessors。您可以在这里找到文档:
https://docs.typo3.org/m/typo3/tutorial-sitepackage/master/en-us/MainMenuCreation/Index.html
要仅显示特殊页面的子页,可以在fluid模板中使用集成菜单的条件:
[PIDupinRootline = uid]
... here is your menu ...
[end]该uid属于要从中显示子页面的页面。
https://stackoverflow.com/questions/61411209
复制相似问题