0
votes
           <v:menu
                    levels="3"
                    excludePages="{settings.menuExclude}"
                    as="menu"
                    expandAll="TRUE"
                    classActive="is-active"
                    >
                                <li class="menu-item">
                                <f:link.typolink parameter="{item.link}"  class="{item.class}">
                                    {item.linktext ->f:format.raw()}
                                </f:link.typolink>
                                </li>
  </v:menu>

I add a custom page like described here: https://docs.typo3.org/m/typo3/reference-coreapi/master/en-us/ApiOverview/PageTypes/Index.html

But v:menu don't want/show to render the page in menu. Settings doctypes deprecated, so how I can add custom pagetype in my menu??

1
what about using a menuprocessor and use a partial to render it completely on your own?Bernd Wilke πφ
Yer, thx I know different ways to do that. Already did with TMENU typoscript tobject. But my question about v:menu and VHSOleg V Karun

1 Answers

0
votes

Shot from the hip: make sure your doktype value for the custom page type is a value below 199, as everything above this is considered "unlinkable" by TYPO3. VHS will not impose any limits so this all depends on which doktype values are considered valid by TYPO3 itself.