Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Hi I'm coding a psd to be a Shopify theme. The actual shop is supposed to have several collections of products. I've also new to shopify.

Here's what I'm not sure about. I'll have a top nav listing the various collections....women's dresses, Men's shirts etc. but what's the best coding practice or technique to ensure the right collections get's displayed on the single collections page (collections.liquid) when the user clicks through each time.

This demo achieves what I'm explaining and I've downloaded the theme and studied the source code but still don't really understand.

http://megatronic-theme.myshopify.com/collections

(click the category links in the left hand nav and the one page display the relevant collection each time)

I was hoping someone could explain in simple terms the coding process.

Many thanks.

share|improve this question

1 Answer

This is done for you automatically. Shopify will pick up on the collection specified in the url (e.g. blah.myshopify.com/collections/hello) and drop that collection (hello in our example) into the collection liquid variable. You can then access the products using collection.products in the template

Here's the relevant documentation (A bit sparse, I'll admit) showing you the variables that are available within the collection.liquid template: http://wiki.shopify.com/Collection.liquid

share|improve this answer
Thank you very much for your answer. – Juan Chandler Oct 12 '12 at 23:10
No problem. Please accept the answer so others know it's correct :) – David Underwood Oct 13 '12 at 2:20

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.