marco963 wrote:Another "nice to have" feature would be, about the new function: "Page type:LINK - Create external links in main menu", to have the possibility to open the link in a new window (target="_blank").
That's already possible =)
In the URL field, you can set your target like below by following the link with a target behind *asterix character:
For example, the following entry opens the link in a _blank window:
https://www.photo.gallery*_blank
If you don't add any target, the link will open in same window. You can also use the following target parameters:
_blank
This target will cause the link to always be loaded in a new blank window.
_self
This target causes the link to always load in the same window the anchor was clicked in.
_parent
This target makes the link load in the immediate FRAMESET parent of this document. This defaults to acting like "_self" if the document has no parent.
_top
This target makes the link load in the full body of the window. This defaults to acting like "_self" if the document is already at the top. It is useful for breaking out of an arbitrarily deep FRAME nesting.
window_name
This will force the document to load in the window named window_name, or if such a window does not exist, one will be created, and then the document will be loaded in it.