I am using
{exp:channel:category_archive channel="default_site" style="linear"}
{categories}
<h3>{category_name}</h3>
{if category_description}
<p>{category_description}</p>
{/if}
{/categories}
{entry_titles}
<a href="{path='SITE_INDEX'}">{title}</a><br />
{/entry_titles}
{/exp:channel:category_archive}
To display a series of categories in a channel.
How do I include the entries titles and custom fields instead of just the entry titles?
something like this:
{exp:channel:category_archive channel="default_site" style="linear"}
{categories}
<h3>{category_name}</h3>
{if category_description}
<p>{category_description}</p>
{/if}
{/categories}
{entries}
<h1>{title}</h1>
{entended_content_custom_field}
{/entries}
{/exp:channel:category_archive}
SOLVED:
{exp:channel:category_archive channel="classes" style="linear"}
{categories}
<h1>{category_name}</h1>
{if category_description}
<p>{category_description}</p>
{/if}
{exp:channel:entries channel="classes" category="{category_id}"}
<h3>{title}</h3>
{class}
{/exp:channel:entries}
{/categories}
{/exp:channel:category_archive}
