Hello -
I have a page that lists the titles of folders (that have subfolders). What I'd like is to NOT list those titles (of the root folders) that have empty sub-folders. Here's the code I'm using now:
<cms:folders masterpage='portfolio.php' hierarchical='1' depth='1'>
<div class="catagory_1 clearfix">
<!-- Row 1 -->
<div class="grid_3 textleft" >
<h9 class="title" margin-left:20px><cms:show k_folder_title /></h9>
<p></p>
<cms:pages masterpage='portfolio.php' folder=k_folder_name include_subfolders='1' limit='1'>
<cms:set var_glo_ft=k_folder_name scope='global' />
<h8 class="title" margin-left:20px><a href="portfolio_flist.html"><cms:show k_page_foldertitle /></a></h8>
</cms:pages>
</div>
<div class="grid_9">
<cms:pages masterpage='portfolio.php' folder=k_folder_name>
<cms:if sold = 'No' >
<a class="portfolio_item float <cms:zebra 'alpha' '' 'omega' />" href="<cms:show k_page_link />">
<span><cms:show k_page_title /></span>
<img class="" src="<cms:show thumb />" alt=""/>
</a>
</cms:if>
</cms:pages>
<div class="clear"></div>
</div>
</div>
<p></p>
<div class="hr grid_12 clearfix"> </div>
</cms:folders>
I have a page that lists the titles of folders (that have subfolders). What I'd like is to NOT list those titles (of the root folders) that have empty sub-folders. Here's the code I'm using now:
<cms:folders masterpage='portfolio.php' hierarchical='1' depth='1'>
<div class="catagory_1 clearfix">
<!-- Row 1 -->
<div class="grid_3 textleft" >
<h9 class="title" margin-left:20px><cms:show k_folder_title /></h9>
<p></p>
<cms:pages masterpage='portfolio.php' folder=k_folder_name include_subfolders='1' limit='1'>
<cms:set var_glo_ft=k_folder_name scope='global' />
<h8 class="title" margin-left:20px><a href="portfolio_flist.html"><cms:show k_page_foldertitle /></a></h8>
</cms:pages>
</div>
<div class="grid_9">
<cms:pages masterpage='portfolio.php' folder=k_folder_name>
<cms:if sold = 'No' >
<a class="portfolio_item float <cms:zebra 'alpha' '' 'omega' />" href="<cms:show k_page_link />">
<span><cms:show k_page_title /></span>
<img class="" src="<cms:show thumb />" alt=""/>
</a>
</cms:if>
</cms:pages>
<div class="clear"></div>
</div>
</div>
<p></p>
<div class="hr grid_12 clearfix"> </div>
</cms:folders>