i have URL site/faqs = it shows all FAQs grouped by category
CATEGORY NAME
faq here & answer
and another faq & answer
another faq & answer
NEXT CATEGORY
a new faq & answer
another faq & answer
I need to also be able to go to URL site/faqs/category/next_category and have it show only the “next category” *but that still shows all the entries.
NEXT CATEGORY
a new faq
another faq
this is what i have:
{exp:channel:categories channel="faqs" style="linear" show_empty="no"}
<h3>{category_name}</h3>
<p> {exp:channel:entries channel="faqs" category="{category_id}"}<br />
</p><h4>{title}</h4>
<p> <br />
{faq_body} </p>
<p> {/exp:channel:entries}<br />
{/exp:channel:categories}If I get rid of the exp:channel:categories it works but then it’s not grouped by category.
Any insight on the best way to accomplish what I need?