Blog Sections Open
Building Nested Menus with Wayfinder
Wayfinder can build multilevel menus cleanly, but only if you prepare the template chunks for nested output instead of treating every item as flat markup.
Wayfinder is one of the classic tools for building nested menu trees in Evolution CMS. The key is to separate the outer wrapper, row template, and nested branch template so child items can render recursively.
Target structure
<ul>
<li>...</li>
<li>
<ul>
<li>...</li>
</ul>
</li>
</ul>
Recommendation
Design Wayfinder chunks as a tree, not as one repeated row. Once your outer and inner templates are separated, nested menus become much easier to extend and style.
Prefilling eForm Fields with Logged-In User Data
When a logged-in customer opens an order form, you can prefill the form from their profile instead of making them type the same data again.
Wrapping Ditto Output in Groups of Ten
When you need slider-like or grouped markup from Ditto, use the iteration counter to open and close wrappers at predictable intervals.