Problems, need help? Have a tip or advice? Post it here.
4 posts Page 1 of 1
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:
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.
Hi, @Alin

It should be this way:
Code: Select all
folder=k_folder_name


As you see, we pass variable names without quotes. Single quotes are used to indicate strings. More details here: http://docs.couchcms.com/concepts/setti ... eters.html

Ok?
Join COUCH:TALK channel here https://t.me/couchcms_chat
Ryazania — a framework to boost productivity with Add-ons viewtopic.php?f=2&t=13475
Support my efforts to help the community https://boosty.to/trendo/donate
trendoman wrote: Hi, @Alin

It should be this way:
Code: Select all
folder=k_folder_name


As you see, we pass variable names without quotes. Single quotes are used to indicate strings. More details here: http://docs.couchcms.com/concepts/setti ... eters.html

Ok?


Hey, thanks :)) It slips my mind from time to time. Have a good weekend.
Thank you! Same to you :)
Join COUCH:TALK channel here https://t.me/couchcms_chat
Ryazania — a framework to boost productivity with Add-ons viewtopic.php?f=2&t=13475
Support my efforts to help the community https://boosty.to/trendo/donate
4 posts Page 1 of 1