Page 1 of 1

Cataloger module: Can all sub-items be recursed into one list?

Posted: Mon Feb 11, 2008 12:37 pm
by stopsatgreen
I'm using the latest version of Cataloger to run a couple of different catalogs on the same site (it's not really good for that, but that's for another topic). I want to list all products for each catalog, but I can't use the Printable template as that outputs every catalog item, not just the items below the page you use it.

Anyway, instead I'm using the 'all' action:

Code: Select all

{cms_module module='Cataloger' action='all' sub_template='My Template'}
What I want it to do is list all my items in one continuous alhabetically sorted list; instead what it does is go through each category in turn, and list all items for that category. So say I have this catalog:

Category A
Item A
Item C

Category B
Item B

When I list 'all', I want this output:

Item A
Item B
Item C

But what I get is this:

Item A
Item C
Item B

Has anyone encountered this problem? Is there a simple solution?

Re: Cataloger module: Can all sub-items be recursed into one list?

Posted: Wed Feb 13, 2008 10:49 pm
by stopsatgreen
* Bump *