collections page help
my apologies up front for not digging for another day, but i am under a very tight deadline.
when moving to the collections page to the home page, i want the collection page to present the following information:
left column (a list of available collections):
* women's shoes
* women's pants
* men's shoes
* men's pants
when clicking on one of the available collections, the main content area should display a list of products from that category with pic, title, desc and price.
formatting is not an issue; the problem is displaying the actual data (such as the list of collections).
i have perused this forum and the wiki for quite a while now, and i apologize that i have been unable to find the answer to this problem.
thank you for all of your help!
ps. if an image of the home page would help, please let me know and i will upload one.

03:47PM, Nov 22, 2009
Did you try using a linklist for the list of collections?
10:12PM, Nov 22, 2009
yes, I've tried numerous linklists that are offered up in the forums, but either they do not display anything at all, or they are displaying the wrong information (such as a list of products in a collection).
can anyone provide an example of using a linklist to display a list of categories?
thank you for your time.
bill
10:29PM, Nov 22, 2009
You have to create your linklist under the Navigation tab in your admin. When you're done with that, and only then, can you output the linklist in your theme using Liquid code.
<ul> {% for link in linklists.my-new-linklist.links %} <li>{{ link.title | link_to: link.url }}</li> {% endfor %} </ul>Wiki: http://wiki.shopify.com/Linklist01:54AM, Nov 23, 2009
thanks so much for your response caroline.
i have done that, but i was hoping that the list of collections would be available as a built-in list, that way when the client adds/removes collections, the page would automatically work for them.
i am learning much about liquid, and i must say the site is coming together faster than i originally envisioned, largely due to the helpfulness of people such as yourself!
bill
Last edited 03:05AM, Nov 23, 2009
Oh I see.
Well, sometimes you don't want all your collections to show up, but even then, if you know the ones to exclude (say: frontpage collection), then yes you can use Liquid to pull all your collections dynamically -- minus the ones you don't want.
Here's the code:
<ul> {% for collection in collections %}{% unless collection.handle == 'frontpage' %} <li><a href="{{ collection.url }}" title="{{ collection.title | escape }}">{{ collection.title }}</a></li>{% endunless %} {% endfor %} </ul>08:27PM, Nov 24, 2009
wow! perfect.
thanks caroline!