How to create a (parent) page (without content), that opens the first child page
Just a noob question how to solve a problem.
I want to create a page structure within a existing webpage.The wanted structure is like: - WebPage - Page1 - Seasons - Winter - Summer - Fall - Spring - Page3 ....
But the page Seasons does not have any content, and when clicked in the meanu it needs to open the first child (Winter). The child nodes Winter, Summer, Fall, Spring are in a sub menu (only shown when a Seasons page is opened.
My question is how do I solve this, templates, usercontrols, update panels ??? This is my first week with Umbraco, I hope someone can help me.
How to create a (parent) page (without content), that opens the first child page
Just a noob question how to solve a problem.
I want to create a page structure within a existing webpage.The wanted structure is like:
- WebPage
- Page1
- Seasons
- Winter
- Summer
- Fall
- Spring
- Page3 ....
But the page Seasons does not have any content, and when clicked in the meanu it needs to open the first child (Winter). The child nodes Winter, Summer, Fall, Spring are in a sub menu (only shown when a Seasons page is opened.
My question is how do I solve this, templates, usercontrols, update panels ???
This is my first week with Umbraco, I hope someone can help me.
should be able to with templates. Let me try something and get back to you
Great, I hope you find something.
Or you could use umbracoRedirect
1. Add a content picker to your document type and call it "umbracoRedirect"
2. On the "seasons" page select "winter" in the content picker you added. That should work.
Be aware this is a 302 redirect.
http://our.umbraco.org/wiki/reference/umbraco-best-practices/umbracoredirect
Or you could use umbracoInternalRedirectId which is an transparent redirect. So the redirect isn't reflected by the url.
You can implement this like the umbracoRedirect.
Great, both options worked fine!
Thanks Claushingebjerg and David
Please mark as solved.
is working on a reply...