<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>SavvyRow - Vintage Gentlemens Clothing</title>
    <link>http://forums.shopify.com/categories/3/posts/29156</link>
    <language>en-us</language>
    <description>Feed for discussion topic SavvyRow - Vintage Gentlemens Clothing</description>
    <item>
      <title>SavvyRow - Vintage Gentlemens Clothing</title>
      <author>Stuart Whitman</author>
      <pubDate>Fri, 04 Sep 2009 07:39:23 +0000</pubDate>
      <link>http://forums.shopify.com/categories/3/posts/29156</link>
      <guid>http://forums.shopify.com/categories/3/posts/29156</guid>
      <description>Just launched "SavvyRow":&lt;a href="http://www.savvyrow.co.uk"&gt;http://www.savvyrow.co.uk&lt;/a&gt; - a vintage clothing store for classic gentlemens clothes.

The owner takes very detailed pictures of all items and has approx 12 images for each product so the customer can get a detailed view of exactly what they're getting.

Features a sprinkling of jQuery for the product image swapping and product info tabs. Used the new snippets feature for the LHS menus and collections pages.</description>
    </item>
    <item>
      <title>Jamie commented</title>
      <author>Jamie</author>
      <pubDate>Fri, 04 Sep 2009 10:58:18 +0000</pubDate>
      <link>http://forums.shopify.com/categories/3/posts/29156#comment-29163</link>
      <guid>http://forums.shopify.com/categories/3/posts/29156#comment-29163</guid>
      <description>&lt;p&gt;Looks great Stuart!&lt;/p&gt;</description>
    </item>
    <item>
      <title>Roman I. commented</title>
      <author>Roman I.</author>
      <pubDate>Mon, 07 Sep 2009 15:56:17 +0000</pubDate>
      <link>http://forums.shopify.com/categories/3/posts/29156#comment-29223</link>
      <guid>http://forums.shopify.com/categories/3/posts/29156#comment-29223</guid>
      <description>&lt;p&gt;Hi Stuart,&lt;/p&gt;


	&lt;p&gt;Please, can you post a solution for your categories with submenu.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Stuart Whitman commented</title>
      <author>Stuart Whitman</author>
      <pubDate>Mon, 07 Sep 2009 22:42:03 +0000</pubDate>
      <link>http://forums.shopify.com/categories/3/posts/29156#comment-29231</link>
      <guid>http://forums.shopify.com/categories/3/posts/29156#comment-29231</guid>
      <description>&lt;p&gt;Hi Roman,&lt;/p&gt;


	&lt;p&gt;My fault, I think I know what your after but I haven&amp;#8217;t managed to code a 2 level menu. What I did do was use a snippet to include the following submenu (garments_menu.liquid) so the store owner could update easily without looking through the whole of my theme layout.&lt;/p&gt;


&lt;code&gt;&lt;pre&gt;
&amp;lt;ul class="list"&amp;gt;
&amp;lt;h3&amp;gt;Shop by Garments&amp;lt;/h3&amp;gt;
                          &amp;lt;li&amp;gt;&amp;lt;a href="/collections/jackets"&amp;gt;Jackets&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;
&amp;lt;!--Start submenu--&amp;gt;                                   
{% assign typeList = ',' %}
&amp;lt;ul&amp;gt;
{% for product in collections['jackets'].all_products %}
     {% capture compareType %},{{product.type}},{% endcapture %}
        {% if typeList contains compareType or product.type == "--------" %}{% else %}
               &amp;lt;li&amp;gt;{{  product.type | link_to_type }}&amp;lt;/li&amp;gt;
               {% capture tempList %}{{typeList}}{{product.type}},{% endcapture %}
               {% assign typeList = tempList %}
    {% endif %}
{% endfor %}
&amp;lt;/ul&amp;gt;
&amp;lt;!--end submenu--&amp;gt;
                          &amp;lt;li&amp;gt;&amp;lt;a href="/collections/coats"&amp;gt;Coats&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;
&amp;lt;!--Start submenu--&amp;gt;
{% assign typeList = ',' %}                                   
&amp;lt;ul&amp;gt;
{% for product in collections['coats'].all_products %}
     {% capture compareType %},{{product.type}},{% endcapture %}
        {% if typeList contains compareType or product.type == "--------" %}{% else %}
               &amp;lt;li&amp;gt;{{  product.type | link_to_type }}&amp;lt;/li&amp;gt;
               {% capture tempList %}{{typeList}}{{product.type}},{% endcapture %}
               {% assign typeList = tempList %}
    {% endif %}
{% endfor %}
&amp;lt;/ul&amp;gt;
&amp;lt;!--end submenu--&amp;gt;
                          &amp;lt;li&amp;gt;&amp;lt;a href="/collections/suits"&amp;gt;Suits&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;
&amp;lt;!--Start submenu--&amp;gt;
{% assign typeList = ',' %}                                   
&amp;lt;ul&amp;gt;
{% for product in collections['suits'].all_products %}
     {% capture compareType %},{{product.type}},{% endcapture %}
        {% if typeList contains compareType or product.type == "--------" %}{% else %}
               &amp;lt;li&amp;gt;{{  product.type | link_to_type }}&amp;lt;/li&amp;gt;
               {% capture tempList %}{{typeList}}{{product.type}},{% endcapture %}
               {% assign typeList = tempList %}
    {% endif %}
{% endfor %}
&amp;lt;/ul&amp;gt;
&amp;lt;!--end submenu--&amp;gt;
                          &amp;lt;li&amp;gt;&amp;lt;a href="/collections/waistcoats"&amp;gt;Waistcoats&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;
&amp;lt;!--Start submenu--&amp;gt;
{% assign typeList = ',' %}                                   
&amp;lt;ul&amp;gt;
{% for product in collections['waistcoats'].all_products %}
     {% capture compareType %},{{product.type}},{% endcapture %}
        {% if typeList contains compareType or product.type == "--------" %}{% else %}
               &amp;lt;li&amp;gt;{{  product.type | link_to_type }}&amp;lt;/li&amp;gt;
               {% capture tempList %}{{typeList}}{{product.type}},{% endcapture %}
               {% assign typeList = tempList %}
    {% endif %}
{% endfor %}
&amp;lt;/ul&amp;gt;
&amp;lt;!--end submenu--&amp;gt;
                          &amp;lt;li&amp;gt;&amp;lt;a href="/collections/trousers"&amp;gt;Trousers&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;
&amp;lt;!--Start submenu--&amp;gt;
{% assign typeList = ',' %}                                   
&amp;lt;ul&amp;gt;
{% for product in collections['trousers'].all_products %}
     {% capture compareType %},{{product.type}},{% endcapture %}
        {% if typeList contains compareType or product.type == "--------" %}{% else %}
               &amp;lt;li&amp;gt;{{  product.type | link_to_type }}&amp;lt;/li&amp;gt;
               {% capture tempList %}{{typeList}}{{product.type}},{% endcapture %}
               {% assign typeList = tempList %}
    {% endif %}
{% endfor %}
&amp;lt;/ul&amp;gt;
&amp;lt;!--end submenu--&amp;gt;
                          &amp;lt;li&amp;gt;&amp;lt;a href="/collections/eveningwear"&amp;gt;Eveningwear&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;
&amp;lt;!--Start submenu--&amp;gt;
{% assign typeList = ',' %}                                   
&amp;lt;ul&amp;gt;
{% for product in collections['eveningwear'].all_products %}
     {% capture compareType %},{{product.type}},{% endcapture %}
        {% if typeList contains compareType or product.type == "--------" %}{% else %}
               &amp;lt;li&amp;gt;{{  product.type | link_to_type }}&amp;lt;/li&amp;gt;
               {% capture tempList %}{{typeList}}{{product.type}},{% endcapture %}
               {% assign typeList = tempList %}
    {% endif %}
{% endfor %}
&amp;lt;/ul&amp;gt;
&amp;lt;!--end submenu--&amp;gt;
                          &amp;lt;li&amp;gt;&amp;lt;a href="/collections/morningwear"&amp;gt;Morningwear&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;
&amp;lt;!--Start submenu--&amp;gt;
{% assign typeList = ',' %}                                   
&amp;lt;ul&amp;gt;
{% for product in collections['morningwear'].all_products %}
     {% capture compareType %},{{product.type}},{% endcapture %}
        {% if typeList contains compareType or product.type == "--------" %}{% else %}
               &amp;lt;li&amp;gt;{{  product.type | link_to_type }}&amp;lt;/li&amp;gt;
               {% capture tempList %}{{typeList}}{{product.type}},{% endcapture %}
               {% assign typeList = tempList %}
    {% endif %}
{% endfor %}
&amp;lt;/ul&amp;gt;
&amp;lt;!--end submenu--&amp;gt;
                          &amp;lt;li&amp;gt;&amp;lt;a href="/collections/footwear"&amp;gt;Footwear&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;
&amp;lt;!--Start submenu--&amp;gt;
{% assign typeList = ',' %}                                   
&amp;lt;ul&amp;gt;
{% for product in collections['footwear'].all_products %}
     {% capture compareType %},{{product.type}},{% endcapture %}
        {% if typeList contains compareType or product.type == "--------" %}{% else %}
               &amp;lt;li&amp;gt;{{  product.type | link_to_type }}&amp;lt;/li&amp;gt;
               {% capture tempList %}{{typeList}}{{product.type}},{% endcapture %}
               {% assign typeList = tempList %}
    {% endif %}
{% endfor %}
&amp;lt;/ul&amp;gt;
&amp;lt;!--end submenu--&amp;gt;
                          &amp;lt;li&amp;gt;&amp;lt;a href="/collections/accessories"&amp;gt;Accessories&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;
&amp;lt;!--Start submenu--&amp;gt;
{% assign typeList = ',' %}                                   
&amp;lt;ul&amp;gt;
{% for product in collections['accessories'].all_products %}
     {% capture compareType %},{{product.type}},{% endcapture %}
        {% if typeList contains compareType or product.type == "--------" %}{% else %}
               &amp;lt;li&amp;gt;{{  product.type | link_to_type }}&amp;lt;/li&amp;gt;
               {% capture tempList %}{{typeList}}{{product.type}},{% endcapture %}
               {% assign typeList = tempList %}
    {% endif %}
{% endfor %}
&amp;lt;/ul&amp;gt;
&amp;lt;!--end submenu--&amp;gt;
                          &amp;lt;li&amp;gt;&amp;lt;a href="/collections/ladies-vintage-clothing"&amp;gt;Ladies Vintage Clothing&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;
&amp;lt;!--Start submenu--&amp;gt;
{% assign typeList = ',' %}                                   
&amp;lt;ul&amp;gt;
{% for product in collections['ladies'].all_products %}
     {% capture compareType %},{{product.type}},{% endcapture %}
        {% if typeList contains compareType or product.type == "--------" %}{% else %}
               &amp;lt;li&amp;gt;{{  product.type | link_to_type }}&amp;lt;/li&amp;gt;
               {% capture tempList %}{{typeList}}{{product.type}},{% endcapture %}
               {% assign typeList = tempList %}
    {% endif %}
{% endfor %}
&amp;lt;/ul&amp;gt;
&amp;lt;!--end submenu--&amp;gt;          
                    &amp;lt;/ul&amp;gt;
&lt;/pre&gt;&lt;/code&gt;

	&lt;p&gt;What would be ideal is if you could create a linklist with all the collections and then run the for&amp;#8230;next inside that. Or the other way I thought about is was checking for another linklist called submenu-toplevelname but I can&amp;#8217;t figure out how to pass the variable names about. Maybe &lt;em&gt;Christina&lt;/em&gt;, &lt;em&gt;Gavin&lt;/em&gt; or someone else has figured out how to do it&amp;#8230;&lt;/p&gt;


	&lt;p&gt;I should also point out the &lt;strong&gt;for&amp;#8230;next&lt;/strong&gt; code is actually someone elses here on the forum I just made a small mod to check &lt;strong&gt;product.type&lt;/strong&gt; was selected.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Roman I. commented</title>
      <author>Roman I.</author>
      <pubDate>Tue, 29 Sep 2009 11:36:42 +0000</pubDate>
      <link>http://forums.shopify.com/categories/3/posts/29156#comment-29779</link>
      <guid>http://forums.shopify.com/categories/3/posts/29156#comment-29779</guid>
      <description>&lt;p&gt;Thank you. It really help me a lot!&lt;/p&gt;</description>
    </item>
    <item>
      <title>Jamie commented</title>
      <author>Jamie</author>
      <pubDate>Wed, 21 Oct 2009 14:24:00 +0000</pubDate>
      <link>http://forums.shopify.com/categories/3/posts/29156#comment-30406</link>
      <guid>http://forums.shopify.com/categories/3/posts/29156#comment-30406</guid>
      <description>&lt;p&gt;Just adding this bit from a later post. Stuart had trouble with this code if the returns were greater than 50 (a Shopify db limitation). The code was adjusted to:&lt;/p&gt;
&lt;p&gt;
&lt;pre&gt;{% paginate collections.['eveningwear'].products by 1000 %}
{% for product in collections['eveningwear'].all_products %}
  &amp;lt;li&amp;gt;{{ product.type | link_to_type }}&amp;lt;/li&amp;gt;
{% endfor %}
{% endpaginate %}&lt;/pre&gt;
To accomodate queries that returned more than 50 results.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description>
    </item>
  </channel>
</rss>
