In the docs it states that all channel:entries parmeters can be used as dynamic parameters.
What’s the correct way to set up multiple categories in this way, e.g. a list of category checkboxes. I’m thinking something like the following (where the categories tag generates the list of available categories for inputs):
<form method="post" action="{path='{segment_1}/{segment_2}'}">
{exp:channel:categories
channel="news"
category_group="2"
parent_only="yes"
show_empty="no"
style="linear"
}
<label for="cat1">
<input type="checkbox" id="cat1" name="category[]" value="{category_id}">{category_name}
</label>
{/exp:channel:categories}
</form>All other dynamic parameters are working fine, but I can’t get these multiple categories to work. Has anyone ran into a similar problem?