This is the first time this is happening, I created a clonable page with dynamic folders and a html list view inside snippets, everything works fine so far.
I am listing all the folders when i click one of them, the link changes to ?f=9 but the articles don't change, it still lists all the articles.
I am listing the folders with:
..and the articles:
I have also changed the folder='k_folder_name' to one of the folder's names and it does show only those articles inside that folder...I don't get it.
I am listing all the folders when i click one of them, the link changes to ?f=9 but the articles don't change, it still lists all the articles.
I am listing the folders with:
- Code: Select all
<cms:set my_current_folder=k_folder_name scope='global' />
<cms:folders masterpage='add_price.php'>
<a href="<cms:show k_folder_link/>"><li class="<cms:if k_folder_name=my_current_folder>active</cms:if>"><cms:show k_folder_title /></li></a>
</cms:folders>
..and the articles:
- Code: Select all
<cms:pages masterpage="add_price.php" folder='k_folder_name'>
<h1><cms:show k_page_title /></h1>
</cms:pages>
I have also changed the folder='k_folder_name' to one of the folder's names and it does show only those articles inside that folder...I don't get it.