You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 4, 2026. It is now read-only.
Thx for the package! One thing that didn't work for me was the frontend behaviour of the folders -> when accessing a route of a folder in the frontend I was not redirected to the parent but instead kept getting the backend shortcut message ("This is a shortcut to the parent page. Click ___ to continue to the page.").
We found two options to fix this:
Use Neos.Neos:Shortcut as supertype for the folder nodetype. Works in the frontend but overwrites the package intended behaviour in the backend (folder nodetypes are rendered as standard shortcuts in the backend).
Overwrite the Breadlesscode.NodeTypes.Folder:Document.Folder prototype, something along the lines below. Didn't seem right to mock the shortcut behaviour like this, so I decided for the first option in my case.
I'm not completely sure if this is just an issue of me not using the package correctly or if other people are using workarounds like this as well and what a good solution could be.
Thx for the package! One thing that didn't work for me was the frontend behaviour of the folders -> when accessing a route of a folder in the frontend I was not redirected to the parent but instead kept getting the backend shortcut message ("This is a shortcut to the parent page. Click ___ to continue to the page.").
We found two options to fix this:
Neos.Neos:Shortcutas supertype for the folder nodetype. Works in the frontend but overwrites the package intended behaviour in the backend (folder nodetypes are rendered as standard shortcuts in the backend).Breadlesscode.NodeTypes.Folder:Document.Folderprototype, something along the lines below. Didn't seem right to mock the shortcut behaviour like this, so I decided for the first option in my case.I'm not completely sure if this is just an issue of me not using the package correctly or if other people are using workarounds like this as well and what a good solution could be.