Well, I just started using dynamic_folders and I'm having trouble displaying the article folder.
To display the folder I am using <cms:show k_page_foldertitle /> but, oddly, it doesn't display the folder.
PS: I will want to display all the folders in a dropdown and I just wrote this:
Do you think this will work? Or is there another way of doing it with couch?
To display the folder I am using <cms:show k_page_foldertitle /> but, oddly, it doesn't display the folder.
PS: I will want to display all the folders in a dropdown and I just wrote this:
- Code: Select all
<select class="category" onChange="window.location.href=this.value">
<option disabled="disabled" selected="selected" style="display:none;">..categorie:</option>
<option value="#">Toate</option>
<cms:folders masterpage='article.php'>
<option value="<cms:show k_folder_link />"><cms:show k_folder_title /></option>
</cms:folders>
</select>
Do you think this will work? Or is there another way of doing it with couch?