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?