I have a channel with a set of categories, each with a few subcategories. I have this code (simplified):
{exp:channel:categories channel="theChannel"}
<input type="checkbox" value="something" /> {category_name}
{/exp:channel:categories}I want to show only the children of a specific parent. Let’s say the a parent is category 1 and its children are 2, 3, and 4.
If I add:
show="1"I get only the parent.
If I add:
show="1|2"I get the parent and the first child.
But if I add:
show="2"2|3|4)
I get nothing, likely because the parent isn’t included.
My only thought thus far is to use
style="linear"and force-hide the first item. This seems messy.
Any suggestions? Thanks!