Hello,
I’m working on an old site (EE 1.7.1) and need to create a stand-alone entry form for a channel that has multiple category groups assigned to it (each with many categories).
If I use {category_menu} the list of categories is too long and out of context as it combines all the category groups into one list. I need to be able to break this up. Can anyone help?
Here’s the current code:
<ol>
{category_menu}
<li>
<label for="category">Category:</label>
<select name="category[]" size="8" multiple="multiple">
{select_options}
</select>
</li>
{/category_menu}
</ol>I thought I could use something like this but it doesn’t work:
{category_menu group_id="1"}Any help appreciated. Thanks!