We launched new forums in March 2019—join us there. In a hurry for help with your website? Get Help Now!
    • 51474
    • 27 Posts
    Hello guys, I'm using modx 2.4.2-pl
    I'm using latest version of Wayfinder to populate my navigation.

    Here is the static html looks like :
    <section class='nav'>
    	<ul class='right'>
    		<li>
    			<a href="">Home</a>
    		</li>
    		<li class='has-dropdown'>
    			<a href="">About</a>
    			<ul class='dropdown'>
    				<li><a href="">History</a></li>
    				<li><a href="">Biography</a></li>
    				<li><a href="">Milestones</a></li>
    			</ul>
    		</li>
    		<li>
    			<a href="">Contact</a>
    		</li>
    	</ul>
    </section>


    and here is my chunk

    <section class="nav">
            [[  Wayfinder?
                &startId=`0`
                &outerTpl=`desktop-outerTpl`
                &innerRowTpl=`innerRowTpl`
                &rowTpl=`rowTpl`
                &fullLink=`TRUE`
            ]]
        </section>


    and now i'm having problem is that both ul tag is sharing the same outerTpl
    here is my chunk's output html :

    <section class='nav'>
    	<ul class='right'>
    		<li>
    			<a href="">Home</a>
    		</li>
    		<li class='has-dropdown'>
    			<a href="">About</a>
    			<ul class='right'>
    				<li><a href="">History</a></li>
    				<li><a href="">Biography</a></li>
    				<li><a href="">Milestones</a></li>
    			</ul>
    		</li>
    		<li>
    			<a href="">Contact</a>
    		</li>
    	</ul>
    </section>


    here is my outertpl code
    <ul class='right'>
        [[+wf.wrapper]]
    </ul>


    i can't seems use [[+wf.level]] inside my desktop-outerTpl chunk, it output nothing.

    may I know what is the right way to make Wayfinder to make the 2nd level outerTpl to have class 'dropdown' instead of 'right'?

    Thanks alot
    • You don't need any custom tpls, just use classname properties

      &outerClass=`right`
      &innerClass=`dropdown`
      &parentClass=`has-dropdown`

      https://rtfm.modx.com/extras/evo/wayfinder#Wayfinder-CSSClassNameParameters

        Studying MODX in the desert - http://sottwell.com
        Tips and Tricks from the MODX Forums and Slack Channels - http://modxcookbook.com
        Join the Slack Community - http://modx.org