Page 1 of 1

Displaying Cataloger Items on home page

Posted: Mon Jun 04, 2007 10:20 pm
by climberusa
I've used the cataloger module quite a few times but have just found the need to do somehting I've never done before. I'm trying to display a list of items from my 'catalog' on the home page in the form of a drop down list. The problem, I think is that the home page is not the parent of the catalog items. Is there a way to access items outside of the hierarchy?

Here is my template:

Code: Select all

<select name="bod" id="bod">
{section name=numloop loop=$items}
<option value="{$name}">{$name}</option>
{/section}
</select>
right now I'm just getting an empty select box.

I appreciate any help.

Thanks!

Re: Displaying Cataloger Items on home page

Posted: Thu Oct 11, 2007 4:00 pm
by stopsatgreen
Sorry for the very late reply, I've only just seen this. I think the code you need is:

Code: Select all

<select name="bod" id="bod">
{section name=numloop loop=$items}
<option value="{$items[numloop].title}">{$items[numloop].title}</option>
{/section}
</select>