Hi
I'm trying to modify the Questions template, so it will sort the questions by categories. It seems I need to have nested loops but I'm having trouble doing it as i'm not a programmer.
This is what I've got so far:
{foreach item=category from=$items}
{$category->name}
{foreach key=category item=entry from=$items}
{$entry->question}
{entry->answer}
{/foreach}
{/foreach}
But this displays all Q&A in all categories (As I have 3 categories, they all appear three times).
Any ideas?
Thanks in advance!
- Questions 1.0.3
- CGExtensions 1.18.6
- CMSMS 1.7.1
Questions sort by category
Re: Questions sort by category
count the number of times each entry id is found, and only display each one once.
Re: Questions sort by category
Sorry, you lost me there. What do you mean? Is that code I posted above correct?