Problems, need help? Have a tip or advice? Post it here.
2 posts Page 1 of 1
I can't seem to get this to work right. I have a clonable template with dynamic folders and I want to list all of the folders and the pages within the folders in the navigation. Below is what I have:

Code: Select all
<li class="dropdown <cms:if k_template_name == 'what-hurts.php'>active</cms:if>">
                  <a href="#" class="dropdown-toggle" data-toggle="dropdown">What Hurts?</a>
                  <ul class="dropdown-menu">
                     <cms:pages masterpage='what-hurts.php' folder=k_folder_name orderby='page_name'>
                        <li class="dropdown-submenu"><a href="#"> <cms:show k_page_foldertitle /></a><i class="fa fa-angle-right pull-right"></i>
                           <ul class="dropdown-menu">
                                 <li><a href="<cms:show k_page_link />"><cms:excerpt count='28' truncate_chars='1'><cms:show k_page_title /></cms:excerpt></a></li>
                           </ul>
                        </li>
                     </cms:pages>

                  </ul>
               </li>


I have tried using the folders view and still no luck.
I finally figured it out. I needed to wrap the code in the folders tag and place the pages tag within. Here is the code that worked for me in case someone else runs into this:

Code: Select all
<li class="dropdown <cms:if k_template_name == 'what-hurts.php'>active</cms:if>">
                  <a href="#" class="dropdown-toggle" data-toggle="dropdown">What Hurts?</a>
                  <ul class="dropdown-menu">
                     <cms:folders masterpage='what-hurts.php'>
                        <li class="dropdown-submenu"><a href="#"> <cms:show k_folder_title /></a><i class="fa fa-angle-right pull-right"></i>
                           <ul class="dropdown-menu">
                              <cms:pages masterpage='what-hurts.php' folder=k_folder_name orderby='page_name'>
                                 <li><a href="<cms:show k_page_link />"><cms:excerpt count='28' truncate_chars='1'><cms:show k_page_title /></cms:excerpt></a></li>
                              </cms:pages>
                           </ul>
                        </li>
                     </cms:folders>

                  </ul>
               </li>

2 posts Page 1 of 1