<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>Creating Meta Tags</title>
    <link>http://forums.shopify.com/categories/1/posts/19248</link>
    <language>en-us</language>
    <description>Feed for discussion topic Creating Meta Tags</description>
    <item>
      <title>Creating Meta Tags</title>
      <author>mhromney75</author>
      <pubDate>Wed, 30 Apr 2008 18:52:57 +0000</pubDate>
      <link>http://forums.shopify.com/categories/1/posts/19248</link>
      <guid>http://forums.shopify.com/categories/1/posts/19248</guid>
      <description>Hi Everyone,

I have a couple questions about meta tags. (I don&#8217;t know much about HTML) 
I have been searching these forums trying to find a way to add Meta tags to my site. And I have found two possibilities Listed below:

*First*
&lt;code&gt;&lt;pre&gt;
  {% case 'page_title' %}

{% when 'Welcome' %}
 &amp;lt;meta name="description" content="Description here" /&amp;gt;
 &amp;lt;meta name="keywords" content="Keywords here" /&amp;gt;

{% when 'Product-Foo' %}
 &amp;lt;meta name="description" content="{{ product.description }}" /&amp;gt;
 &amp;lt;meta name="keywords" content="keywords here"&amp;gt;

{% endcase %}

Posted by DanW (&lt;a href="http://forums.shopify.com/categories/6/posts/8789#comment-8791"&gt;http://forums.shopify.com/categories/6/posts/8789#comment-8791&lt;/a&gt;)
&lt;/pre&gt;&lt;/code&gt;

I couldn&#8217;t get this one to work.

*Second*
&lt;code&gt;&lt;pre&gt;
  {% if collection %}
  {% if collection.handle == "testcollection" %}
    &amp;lt;meta name="description" content="This is my testcollection"&amp;gt;
  {% endif %}
or
{% if collection %}
  &amp;lt;meta name="keywords" content="{% for tag in collection.tags %}{{ tag }} {% endfor %}"&amp;gt;
{% endif %}
Posted by daniel (&lt;a href="http://forums.shopify.com/categories/1/posts/14404#comment-14540"&gt;http://forums.shopify.com/categories/1/posts/14404#comment-14540&lt;/a&gt;)
&lt;/pre&gt;&lt;/code&gt;

I couldn&#8217;t get this one to work the way I wanted so I had to modify it a little bit in order to get it to work see below.
&lt;code&gt;&lt;pre&gt;
{% if page.title != 'Shopify T-Shirt' %}
 &amp;lt;meta name="description" content="Description here" /&amp;gt;
 &amp;lt;meta name="keywords" product content="{{"&amp;gt;
{% endif %}  

&lt;a href="http://svmountain.myshopify.com/products/shopify-t-shirt"&gt;http://svmountain.myshopify.com/products/shopify-t-shirt&lt;/a&gt;
&lt;/pre&gt;&lt;/code&gt;

After doing this however I realized that if I did it this way I would have to create a snippet of code for all of my 300 products.  So after looking at this code for a bit (remember I am a novice so this isn&#8217;t as apparent to me as it may be to the rest of you) I realized that the Meta Keywords portion is dynamic.  So I thought I can just put that in my theme.liquid and it will pull whatever tags are on my product pages and turn them into keywords.  So that is what I did. See below
&lt;code&gt;&lt;pre&gt;
 &amp;lt;meta name="keywords" product content="{{"&amp;gt;

&lt;a href="http://www.survivalmountain.com/products/spot-satellite-messenger"&gt;http://www.survivalmountain.com/products/spot-satellite-messenger&lt;/a&gt;
&lt;/pre&gt;&lt;/code&gt;

So I added this but I have noticed that for any page on my site that is not a product page it has this snippet of code with no keywords.  So I have a couple questions on this   (example: &lt;a href="http://www.survivalmountain.com/collections/food"&gt;http://www.survivalmountain.com/collections/food&lt;/a&gt;)

1.Does anyone know how to make this more dynamic? So if it is on a collection page it will display the tags for that page or if it is on the product page it will display the tags for that page.  Maybe there is a universal tag command I can put in the content section and it will pick up whatever tags are associated with the page and turn them into keywords.

2. I have also noticed that other websites have both the Meta Keyword &amp; Meta Description.  Do I need both?  Can I make the Meta Description Dynamic also?     </description>
    </item>
    <item>
      <title>mhromney75 commented</title>
      <author>mhromney75</author>
      <pubDate>Fri, 02 May 2008 19:15:01 +0000</pubDate>
      <link>http://forums.shopify.com/categories/1/posts/19248#comment-19317</link>
      <guid>http://forums.shopify.com/categories/1/posts/19248#comment-19317</guid>
      <description>&lt;p&gt;Is there anyone out there that can help me on this?&lt;/p&gt;</description>
    </item>
    <item>
      <title>leeann commented</title>
      <author>leeann</author>
      <pubDate>Wed, 07 May 2008 05:46:32 +0000</pubDate>
      <link>http://forums.shopify.com/categories/1/posts/19248#comment-19418</link>
      <guid>http://forums.shopify.com/categories/1/posts/19248#comment-19418</guid>
      <description>&lt;p&gt;I tried this code recently and it didn&amp;#8217;t work. Does anyone have any advice on how I can install some meta tags on to my site that aren&amp;#8217;t the same on each page? Any help would be appreciated.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Christina commented</title>
      <author>Christina</author>
      <pubDate>Wed, 07 May 2008 12:28:54 +0000</pubDate>
      <link>http://forums.shopify.com/categories/1/posts/19248#comment-19425</link>
      <guid>http://forums.shopify.com/categories/1/posts/19248#comment-19425</guid>
      <description>&lt;p&gt;First of all: there&amp;#8217;s a difference between two variables that look very similar but that are actually quite different:&lt;/p&gt;


	&lt;h3&gt;1) page.title (with the period):&lt;/h3&gt;


	&lt;p&gt;this refers only to the title of a &lt;em&gt;page.liquid&lt;/em&gt; template, e.g., the one that might be called &amp;#8220;About-us&amp;#8221;.  There is no &amp;#8220;page.title&amp;#8221; variable that refers to the product, the collection, or any other template than page, so your code above, that starts &lt;code&gt;{% if page.title != 'Shopify T-Shirt' %}&lt;/code&gt; would never work.&lt;/p&gt;


	&lt;h3&gt;2) page_title (with the underscore):&lt;/h3&gt;


	&lt;p&gt;this is a variable that refers to each template differently, as follows:&lt;/p&gt;


	&lt;ul&gt;
	&lt;li&gt;&lt;strong&gt;collection&lt;/strong&gt;: the name of the collection currently shown &lt;em&gt;(= collection.title)&lt;/em&gt;&lt;/li&gt;
		&lt;li&gt;&lt;strong&gt;product&lt;/strong&gt;: the name of the product currently shown &lt;em&gt;(= product.title)&lt;/em&gt;&lt;/li&gt;
		&lt;li&gt;&lt;strong&gt;page&lt;/strong&gt;: the title of the page &lt;em&gt;(= page.title)&lt;/em&gt;&lt;/li&gt;
		&lt;li&gt;&lt;strong&gt;blog&lt;/strong&gt;: the title of the blog (not the article) &lt;em&gt;(= blog.title)&lt;/em&gt;&lt;/li&gt;
		&lt;li&gt;&lt;strong&gt;index&lt;/strong&gt;: the word &amp;#8216;Welcome&amp;#8217;&lt;/li&gt;
		&lt;li&gt;&lt;strong&gt;cart&lt;/strong&gt;: the words &amp;#8216;Your Shopping Cart&amp;#8217;&lt;/li&gt;
		&lt;li&gt;&lt;strong&gt;search&lt;/strong&gt;: the word &amp;#8216;Search&amp;#8217;&lt;/li&gt;
	&lt;/ul&gt;


	&lt;p&gt;You can test this by temporarily putting the variable:&lt;br /&gt;&lt;code&gt;&lt;pre&gt;&amp;lt;h1&amp;gt;{{page_title}}&amp;lt;/h1&amp;gt;&lt;/pre&gt;&lt;/code&gt; in a visible place in your theme.template, and navigating around your site to see how it changes.&lt;/p&gt;


	&lt;p&gt;So if you put &lt;code&gt;{{page_title}}&lt;/code&gt; in your meta description, it will automatically give you the product titles, collection title and so on.&lt;/p&gt;


	&lt;p&gt;Now some code:&lt;br /&gt;&lt;code&gt;&lt;pre&gt;
{% assign maxwords = 20 %}
{% assign indexblog = 'frontpage' %}

{% case template %}
    {% when 'collection' %}
        &amp;lt;meta name="description" content="{{page_title}}{% if collection.description.size &amp;gt; 0 %}: {{collection.description | strip_html | truncatewords:maxwords}}{% endif %}"/&amp;gt;
        &amp;lt;meta name="keywords" content= "{{collection.title}}{% if collection.tags.size &amp;gt; 0 %}: {{ collection.tags | join: ', ' }}{% endif %}" /&amp;gt;
    {% when 'product' %}
        &amp;lt;meta name="description" content="{{page_title}}{% if product.description.size &amp;gt; 0 %}: {{product.description | strip_html | truncatewords:maxwords}}{% endif %}"/&amp;gt;
        &amp;lt;meta name="keywords" content="{{product.title}}{% if product.tags.size &amp;gt; 0 %}: {{ product.tags | join: ', ' }}{% endif %}"&amp;gt;
    {% when 'page' %}
        &amp;lt;meta name="description" content="{{page_title}}: {{page.content | strip_html | truncatewords:maxwords}}"/&amp;gt;
        &amp;lt;meta name="keywords" content="{{page_title}}"&amp;gt;
    {% when 'blog' %}
        &amp;lt;meta name="description" content="{{page_title}}"/&amp;gt;
        &amp;lt;meta name="keywords" content="{{page_title}}"&amp;gt;
    {% else %}
        &amp;lt;meta name="description" content="{{shop.name}}{% if blogs.[indexblog].articles.size &amp;gt; 0 %}: {% for article in blogs.[indexblog].articles limit:1 %}{{ article.title }}: {{article.content | strip_html | truncatewords:maxwords}}{% endfor %}{% endif %}"/&amp;gt;
        &amp;lt;meta name="keywords" content= "{% for link in linklists.Main-Menu.links %}{% if link.type == 'collection_link' %}{{link.title}} {% endif %}{% endfor %}" /&amp;gt;
{% endcase %}    

&lt;/pre&gt;&lt;/code&gt;&lt;/p&gt;


	&lt;h3&gt;Code explanation:&lt;/h3&gt;


	&lt;p&gt;The above will give you the following results:&lt;/p&gt;


	&lt;h4&gt;For the collection template:&lt;/h4&gt;


	&lt;p&gt;&lt;strong&gt;Description:&lt;/strong&gt; The title of the collection, followed by an excerpt of the collection description, if you&amp;#8217;ve made one.
&lt;strong&gt;Keywords:&lt;/strong&gt; Collection title + tags for that collection.&lt;/p&gt;


	&lt;h4&gt;For the product template:&lt;/h4&gt;


	&lt;p&gt;&lt;strong&gt;Description:&lt;/strong&gt; The product title, followed by an excerpt of the product description, if you have one.
&lt;strong&gt;Keywords:&lt;/strong&gt; Product title + tags for that product.&lt;/p&gt;


	&lt;h4&gt;For the page template:&lt;/h4&gt;


	&lt;p&gt;&lt;strong&gt;Description:&lt;/strong&gt; The page title, followed by an excerpt of the page article.
&lt;strong&gt;Keywords:&lt;/strong&gt; Page title.&lt;/p&gt;


	&lt;h4&gt;For the blog template:&lt;/h4&gt;


	&lt;p&gt;&lt;strong&gt;Description:&lt;/strong&gt; The blog title.
&lt;strong&gt;Keywords:&lt;/strong&gt; Blog title.&lt;br /&gt;(this could be expanded somewhat, to include more specifics)&lt;/p&gt;


	&lt;h4&gt;All other templates including index:&lt;/h4&gt;


	&lt;p&gt;&lt;strong&gt;Description:&lt;/strong&gt; The name of the shop, followed by an excerpt of the frontpage article.
&lt;strong&gt;Keywords:&lt;/strong&gt; A list of the shop collections that are in the Main Menu.&lt;/p&gt;


	&lt;p&gt;There are two variables you can change:&lt;/p&gt;


	&lt;p&gt;&lt;strong&gt;maxwords&lt;/strong&gt; : to increase or decrease the number of words in the excerpts.&lt;/p&gt;


	&lt;p&gt;&lt;strong&gt;indexblog&lt;/strong&gt; : which refers to a blog called &amp;#8216;frontpage&amp;#8217;. If your blog is called somwthing else, you can change that, without messing with the code.&lt;/p&gt;


	&lt;p&gt;Which you are otherwise free to mess with as you please, of course.&lt;/p&gt;


	&lt;p&gt;Though I actually think the &lt;code&gt;&amp;lt;title&amp;gt;&lt;/code&gt; attribute is more important than the keywords.  You can customize that in a very similar fashion.&lt;/p&gt;</description>
    </item>
    <item>
      <title>mhromney75 commented</title>
      <author>mhromney75</author>
      <pubDate>Sat, 10 May 2008 00:59:25 +0000</pubDate>
      <link>http://forums.shopify.com/categories/1/posts/19248#comment-19524</link>
      <guid>http://forums.shopify.com/categories/1/posts/19248#comment-19524</guid>
      <description>&lt;p&gt;Christina Thanks!!&lt;/p&gt;


	&lt;p&gt;This works great.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Christina commented</title>
      <author>Christina</author>
      <pubDate>Mon, 26 May 2008 10:53:57 +0000</pubDate>
      <link>http://forums.shopify.com/categories/1/posts/19248#comment-19890</link>
      <guid>http://forums.shopify.com/categories/1/posts/19248#comment-19890</guid>
      <description>&lt;p&gt;see also &lt;a href="http://forums.shopify.com/categories/6/posts/19827"&gt;continuation of meta description discussion&lt;/a&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>JohnG commented</title>
      <author>JohnG</author>
      <pubDate>Thu, 05 Jun 2008 23:09:41 +0000</pubDate>
      <link>http://forums.shopify.com/categories/1/posts/19248#comment-20091</link>
      <guid>http://forums.shopify.com/categories/1/posts/19248#comment-20091</guid>
      <description>&lt;p&gt;I was finally able to do this &amp;#8211; almost. Pretty slick!  Meta Descriptions work fine throughout except Keywords for my Index page. Comments say, &amp;#8220;All other templates including index:  Description: The name of the shop, followed by an excerpt of the frontpage article. Keywords: A list of the shop collections that are in the Main Menu.&amp;#8221;&lt;/p&gt;


	&lt;p&gt;It is this latter part that is not visible.  I tried to puzzle out, but could not.  What did I miss?&lt;/p&gt;</description>
    </item>
    <item>
      <title>Christina commented</title>
      <author>Christina</author>
      <pubDate>Fri, 06 Jun 2008 16:35:02 +0000</pubDate>
      <link>http://forums.shopify.com/categories/1/posts/19248#comment-20109</link>
      <guid>http://forums.shopify.com/categories/1/posts/19248#comment-20109</guid>
      <description>&lt;p&gt;Do you use the default menu provided by shopify?  The one that&amp;#8217;s called &amp;#8220;Main Menu&amp;#8221;?  The above code assumes that; I shouldn&amp;#8217;t have hard-coded that, but there you go.&lt;/p&gt;


	&lt;p&gt;If your collections are listed in a linklist that is called something else, then replace the handle &amp;#8220;Main-Menu&amp;#8221; in the last line above by the handle of your linklist, like this:&lt;/p&gt;


	&lt;p&gt;Instead of this:&lt;/p&gt;


&lt;code&gt;&lt;pre&gt;
&amp;lt;meta name="keywords" content= "{% for link in linklists.Main-Menu.links %}...
&lt;/pre&gt;&lt;/code&gt;

	&lt;p&gt;do this:&lt;/p&gt;


&lt;code&gt;&lt;pre&gt;
&amp;lt;meta name="keywords" content= "{% for link in linklists.your-linklist-name.links %}...
&lt;/pre&gt;&lt;/code&gt;

	&lt;p&gt;or maybe i should have set &amp;#8220;main-menu&amp;#8221; lowercase.&lt;/p&gt;


	&lt;p&gt;Anyway, try that &amp;#38; see.  Tell me if it doesn&amp;#8217;t work.&lt;/p&gt;</description>
    </item>
    <item>
      <title>JohnG commented</title>
      <author>JohnG</author>
      <pubDate>Fri, 06 Jun 2008 19:26:08 +0000</pubDate>
      <link>http://forums.shopify.com/categories/1/posts/19248#comment-20112</link>
      <guid>http://forums.shopify.com/categories/1/posts/19248#comment-20112</guid>
      <description>&lt;p&gt;I think we are &lt;span class="caps"&gt;SOL&lt;/span&gt;.  Our design uses hard coded links.  See page source at: &lt;a href="http://www.aplusenv.com/"&gt;http://www.aplusenv.com/&lt;/a&gt;&lt;/p&gt;


	&lt;p&gt;So, I am wondering if your other Meta Tag code solution &amp;#8211; &lt;a href="http://forums.shopify.com/categories/6/posts/19827"&gt;http://forums.shopify.com/categories/6/posts/19827&lt;/a&gt; &amp;#8211; can be modified to handle Key Words?&lt;/p&gt;


	&lt;p&gt;I have played with the Meta Descriptions blog articles, etc. and it is perfect for my needs!  I like it because it provides a lot more control over content.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Christina commented</title>
      <author>Christina</author>
      <pubDate>Sat, 07 Jun 2008 11:32:18 +0000</pubDate>
      <link>http://forums.shopify.com/categories/1/posts/19248#comment-20118</link>
      <guid>http://forums.shopify.com/categories/1/posts/19248#comment-20118</guid>
      <description>&lt;p&gt;hmm. what does &lt;span class="caps"&gt;SOL&lt;/span&gt; mean?&lt;/p&gt;


	&lt;p&gt;Looking at page source will not tell me whether something&amp;#8217;s hard-coded or not, &amp;#38; I very much doubt it would be.  That would be just too &lt;span class="caps"&gt;SOL&lt;/span&gt; for words.&lt;/p&gt;


	&lt;p&gt;In your admin &amp;rarr; navigation, check what linklists you have, and then see which links connect to the collections.  Put in the name of that linklist.&lt;/p&gt;


	&lt;p&gt;I&amp;#8217;m glad you&amp;#8217;re liking the metadescriptions blog solution.  You could do that for keywords, too, make a new blog called, um, let&amp;#8217;s see&amp;#8230;&amp;#8221;keywords&amp;#8221; and change the code correspondingly, mutatis mutandis et cetera.&lt;/p&gt;</description>
    </item>
    <item>
      <title>JohnG commented</title>
      <author>JohnG</author>
      <pubDate>Sat, 07 Jun 2008 21:02:49 +0000</pubDate>
      <link>http://forums.shopify.com/categories/1/posts/19248#comment-20137</link>
      <guid>http://forums.shopify.com/categories/1/posts/19248#comment-20137</guid>
      <description>&lt;p&gt;My admin &#8594; navigation shows no linklists, just:&lt;/p&gt;


	&lt;p&gt;Main Menu &#8594;  Home&lt;/p&gt;


	&lt;p&gt;Footer &#8594;  Home, Resources, Events, Classes, Contact Us, Privacy&lt;/p&gt;


	&lt;p&gt;None of which I want to use as Keywords&lt;/p&gt;


	&lt;p&gt;I am going to try to modify your metadescriptions blog solution for &amp;#8220;keywords,&amp;#8221;  and since I have no idea what I am doing it should be &amp;#8230;. um &amp;#8230;. an adventure?&lt;/p&gt;


	&lt;p&gt;2.5 hours Later &amp;#8230;&lt;/p&gt;


	&lt;p&gt;It was an adventure and it works!  Thanks a bunch Christina!&lt;/p&gt;</description>
    </item>
    <item>
      <title>Christina commented</title>
      <author>Christina</author>
      <pubDate>Sun, 08 Jun 2008 03:04:57 +0000</pubDate>
      <link>http://forums.shopify.com/categories/1/posts/19248#comment-20138</link>
      <guid>http://forums.shopify.com/categories/1/posts/19248#comment-20138</guid>
      <description>&lt;p&gt;congrats!! i love it when that happens.&lt;/p&gt;


	&lt;p&gt;weird nav setup you got there though.  you&amp;#8217;re clearly not using your Main Menu linklist. if you just add links there for each of your collections, the above code should work, and give you the collection names as keywords for your index page.&lt;/p&gt;


	&lt;p&gt;But I guess you&amp;#8217;ve gone with the blog.  While you&amp;#8217;re at it, impossibly refining your head section, you might as well stick the title tags in there too.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Chelsea commented</title>
      <author>Chelsea</author>
      <pubDate>Mon, 09 Jun 2008 20:40:23 +0000</pubDate>
      <link>http://forums.shopify.com/categories/1/posts/19248#comment-20162</link>
      <guid>http://forums.shopify.com/categories/1/posts/19248#comment-20162</guid>
      <description>&lt;p&gt;I am going to try to use this to display user feedback on product pages.&lt;/p&gt;


	&lt;p&gt;You rock Christina.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Christina commented</title>
      <author>Christina</author>
      <pubDate>Tue, 10 Jun 2008 02:55:50 +0000</pubDate>
      <link>http://forums.shopify.com/categories/1/posts/19248#comment-20172</link>
      <guid>http://forums.shopify.com/categories/1/posts/19248#comment-20172</guid>
      <description>&lt;p&gt;ooo. why thank you. glad you like it.&lt;br /&gt;plus i sleep on a 100% wool bed, made specially by my local wool bed maker :)&lt;br /&gt;very nice site you have.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Chelsea commented</title>
      <author>Chelsea</author>
      <pubDate>Tue, 10 Jun 2008 03:53:43 +0000</pubDate>
      <link>http://forums.shopify.com/categories/1/posts/19248#comment-20174</link>
      <guid>http://forums.shopify.com/categories/1/posts/19248#comment-20174</guid>
      <description>&lt;p&gt;I sleep on a wool bed too; along with my wool bedding, it&amp;#8217;s the best sleep I have ever had.&lt;/p&gt;


	&lt;p&gt;I will post to this thread when I have figured out the user feedback using the code above.&lt;/p&gt;


	&lt;p&gt;Wool rules.&lt;/p&gt;</description>
    </item>
    <item>
      <title>FannyA commented</title>
      <author>FannyA</author>
      <pubDate>Wed, 11 Jun 2008 10:57:24 +0000</pubDate>
      <link>http://forums.shopify.com/categories/1/posts/19248#comment-20203</link>
      <guid>http://forums.shopify.com/categories/1/posts/19248#comment-20203</guid>
      <description>&lt;p&gt;Christina, thanks for the code, I&amp;#8217;ll try it.&lt;/p&gt;


	&lt;p&gt;Chelsea, I&amp;#8217;m looking forward to your code for user feedback.&lt;/p&gt;


	&lt;p&gt;Lastly, my little lamb is sleeping on a sheepskin since birth and still loving it 2 years later.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Chelsea commented</title>
      <author>Chelsea</author>
      <pubDate>Wed, 11 Jun 2008 15:00:39 +0000</pubDate>
      <link>http://forums.shopify.com/categories/1/posts/19248#comment-20206</link>
      <guid>http://forums.shopify.com/categories/1/posts/19248#comment-20206</guid>
      <description>&lt;p&gt;I will keep working on the user feedback stuff tonight; slow going, as my grasp on liquid is tenuous, but I think I have it half working at least.&lt;/p&gt;


	&lt;p&gt;Here is what I intend to be able to do with it when done:&lt;/p&gt;


	&lt;p&gt;- Define the content for unspecified pages in a Feedback blog that would display on a site&lt;br /&gt;- Display Feedback for specific products, either that are already in the cart, or that are being viewed by the potential customer.&lt;/p&gt;


	&lt;p&gt;Aside: That&amp;#8217;s wonderful FannyA; my daughter Raechel is 9, and she sleeps on a wool and natural latex bed, as well as under a wool duvet.  (So do I for that matter.)  It has improved my allergies and asthma considerably, to the point that I no longer needing an inhaler.&lt;/p&gt;</description>
    </item>
    <item>
      <title>leeann commented</title>
      <author>leeann</author>
      <pubDate>Sat, 14 Jun 2008 23:58:06 +0000</pubDate>
      <link>http://forums.shopify.com/categories/1/posts/19248#comment-20265</link>
      <guid>http://forums.shopify.com/categories/1/posts/19248#comment-20265</guid>
      <description>&lt;p&gt;Hi, I&amp;#8217;m back again&amp;#8230; I installed the code above that Christina supplied, the description is working somewhat, but it doesn&amp;#8217;t put a comma between my meta keywords, I would also like to be able to specify the keywords I would like to use on each page without having to use the links list.&lt;/p&gt;


	&lt;p&gt;Does anyone how I can get around using the link list as my keywords?&lt;/p&gt;


	&lt;p&gt;Thanks in advanced!&lt;/p&gt;


	&lt;p&gt;Lee Ann&lt;/p&gt;</description>
    </item>
    <item>
      <title>FannyA commented</title>
      <author>FannyA</author>
      <pubDate>Sun, 15 Jun 2008 18:25:39 +0000</pubDate>
      <link>http://forums.shopify.com/categories/1/posts/19248#comment-20267</link>
      <guid>http://forums.shopify.com/categories/1/posts/19248#comment-20267</guid>
      <description>&lt;p&gt;Christina, shall I just copy and paste your code into theme.liquid?&lt;br /&gt;Sorry I&amp;#8217;m rubbish at technique.&lt;/p&gt;


	&lt;p&gt;&lt;em&gt; Edited to add &lt;/em&gt;&lt;br /&gt;It works! I pasted the code in the head of my theme.liquid. I did View page source on my website and it worked.&lt;br /&gt;Thanks a bunch!&lt;/p&gt;</description>
    </item>
    <item>
      <title>FannyA commented</title>
      <author>FannyA</author>
      <pubDate>Mon, 16 Jun 2008 12:28:30 +0000</pubDate>
      <link>http://forums.shopify.com/categories/1/posts/19248#comment-20272</link>
      <guid>http://forums.shopify.com/categories/1/posts/19248#comment-20272</guid>
      <description>&lt;p&gt;Hi Folks,&lt;/p&gt;


	&lt;p&gt;I have errors with IE. &lt;span class="caps"&gt;HTML&lt;/span&gt; validator says that &amp;lt;meta&amp;gt; are not closed.&lt;/p&gt;


	&lt;p&gt;I added &amp;lt;/meta&amp;gt; at the end of each code line Christina gave us and now he says &amp;#8220;discarding unexpected &amp;lt;/meta&amp;gt;&amp;#8221;.&lt;/p&gt;


	&lt;p&gt;What to do? Please could somebody help me?&lt;/p&gt;</description>
    </item>
    <item>
      <title>FannyA commented</title>
      <author>FannyA</author>
      <pubDate>Mon, 16 Jun 2008 12:39:56 +0000</pubDate>
      <link>http://forums.shopify.com/categories/1/posts/19248#comment-20273</link>
      <guid>http://forums.shopify.com/categories/1/posts/19248#comment-20273</guid>
      <description>&lt;p&gt;I think I fixed it&amp;#8230;. sorry it&amp;#8217;s so blurry for me ;-)&lt;/p&gt;</description>
    </item>
    <item>
      <title>Christina commented</title>
      <author>Christina</author>
      <pubDate>Tue, 17 Jun 2008 04:08:35 +0000</pubDate>
      <link>http://forums.shopify.com/categories/1/posts/19248#comment-20290</link>
      <guid>http://forums.shopify.com/categories/1/posts/19248#comment-20290</guid>
      <description>&lt;p&gt;Fanny, you found a bug in my code &amp;#8211; sorry about the trouble it&amp;#8217;s caused you.&lt;/p&gt;


	&lt;p&gt;The problem arises because I was sloppy about closing the self-closing meta tags.  The proper way to do it, if you&amp;#8217;re using an xhtml doctype (which you are) is: space &amp;#8211; backslash &amp;#8211; closing bracket.  In some of the lines above, I didn&amp;#8217;t put in the space, and in others, I&amp;#8217;m even missing the backslash, egad!&lt;/p&gt;


	&lt;p&gt;The right way:&lt;br /&gt;&lt;code&gt;&lt;pre&gt;&amp;lt;meta name="whatever" content="whatever" /&amp;gt;&lt;/pre&gt;&lt;/code&gt;&lt;/p&gt;


	&lt;h3&gt;corrected code:&lt;/h3&gt;


&lt;code&gt;&lt;pre&gt;
{% assign maxwords = 20 %}
{% assign indexblog = 'frontpage' %}

{% case template %}
    {% when 'collection' %}
        &amp;lt;meta name="description" content="{{page_title}}{% if collection.description.size &amp;gt; 0 %}: {{collection.description | strip_html | truncatewords:maxwords}}{% endif %}" /&amp;gt;
        &amp;lt;meta name="keywords" content= "{{collection.title}}{% if collection.tags.size &amp;gt; 0 %}: {{ collection.tags | join: ', ' }}{% endif %}" /&amp;gt;
    {% when 'product' %}
        &amp;lt;meta name="description" content="{{page_title}}{% if product.description.size &amp;gt; 0 %}: {{product.description | strip_html | truncatewords:maxwords}}{% endif %}" /&amp;gt;
        &amp;lt;meta name="keywords" content="{{product.title}}{% if product.tags.size &amp;gt; 0 %}: {{ product.tags | join: ', ' }}{% endif %}" /&amp;gt;
    {% when 'page' %}
        &amp;lt;meta name="description" content="{{page_title}}: {{page.content | strip_html | truncatewords:maxwords}}" /&amp;gt;
        &amp;lt;meta name="keywords" content="{{page_title}}" /&amp;gt;
    {% when 'blog' %}
        &amp;lt;meta name="description" content="{{page_title}}" /&amp;gt;
        &amp;lt;meta name="keywords" content="{{page_title}}" /&amp;gt;
    {% else %}
        &amp;lt;meta name="description" content="{{shop.name}}{% if blogs.[indexblog].articles.size &amp;gt; 0 %}: {% for article in blogs.[indexblog].articles limit:1 %}{{ article.title }}: {{article.content | strip_html | truncatewords:maxwords}}{% endfor %}{% endif %}" /&amp;gt;
        &amp;lt;meta name="keywords" content= "{% for link in linklists.Main-Menu.links %}{% if link.type == 'collection_link' %}{{link.title}} {% endif %}{% endfor %}" /&amp;gt;
{% endcase %}
&lt;/pre&gt;&lt;/code&gt;

	&lt;p&gt;You have to get rid of the &lt;code&gt;&amp;lt;/meta&amp;gt;&lt;/code&gt; in your html, that&amp;#8217;s not the right syntax.&lt;br /&gt;Hope this helps.&lt;/p&gt;


	&lt;p&gt;@leeann: if you want more customization of keywords, use the other meta tag method given &lt;a href="http://forums.shopify.com/categories/6/posts/19827#comment-19889"&gt;here&lt;/a&gt;, and adapt it to work for keywords too, like JohnG did (see comments above).&lt;/p&gt;


	&lt;p&gt;@JohnG: wanna share your adventurous code?&lt;/p&gt;</description>
    </item>
    <item>
      <title>JohnG commented</title>
      <author>JohnG</author>
      <pubDate>Sat, 21 Jun 2008 01:33:30 +0000</pubDate>
      <link>http://forums.shopify.com/categories/1/posts/19248#comment-20338</link>
      <guid>http://forums.shopify.com/categories/1/posts/19248#comment-20338</guid>
      <description>&lt;p&gt;Christina, I&amp;#8217;d be happy to share but it would duplicate what is already available.  I used your code &amp;#8220;right out of the box&amp;#8221; &amp;#8211; that is I cut and pasted it from your post to my theme.liquid between the &amp;lt;head&amp;gt;&amp;lt;/head&amp;gt; tags.  I then created the metadescription blogs as explained in your post and it worked!&lt;/p&gt;


	&lt;p&gt;Once I had the Descriptions part functioning, I took the same code and search/replaced the word &amp;#8220;description&amp;#8221; with &amp;#8220;keywords&amp;#8221; and put this directly under the metadescription code. Then I added metakeyword blogs and that&amp;#8217;s it.&lt;/p&gt;


	&lt;p&gt;Two things I&amp;#8217;d like to improve/fix are (1) stripping out the page titles that display before each meta description and (2) eliminate the extra areas of white space before and after the meta tags.&lt;/p&gt;


	&lt;p&gt;I&amp;#8217;ve tried to figure out how to do both, but am stumped.&lt;/p&gt;


	&lt;p&gt;Any suggestions?&lt;/p&gt;</description>
    </item>
    <item>
      <title>Christina commented</title>
      <author>Christina</author>
      <pubDate>Sat, 21 Jun 2008 12:52:23 +0000</pubDate>
      <link>http://forums.shopify.com/categories/1/posts/19248#comment-20342</link>
      <guid>http://forums.shopify.com/categories/1/posts/19248#comment-20342</guid>
      <description>&lt;p&gt;ok.&lt;/p&gt;


	&lt;p&gt;you can get rid of the page titles by removing all instances of &lt;code&gt;page_title&lt;/code&gt; from the code &amp;#8211; maybe just leaving it in for the blog template, otherwise you won&amp;#8217;t have much meta to show.&lt;/p&gt;


	&lt;p&gt;the whitespace cannot be removed by us. it&amp;#8217;s the trace left behind from processing all the conditional statements.  the shopify crew would have to do something to their code to fix that, but i&amp;#8217;m not sure that that is (or should be) a huge priority.  it&amp;#8217;s not very pretty, but it&amp;#8217;s harmless.&lt;/p&gt;</description>
    </item>
    <item>
      <title>JohnG commented</title>
      <author>JohnG</author>
      <pubDate>Sat, 21 Jun 2008 19:02:52 +0000</pubDate>
      <link>http://forums.shopify.com/categories/1/posts/19248#comment-20346</link>
      <guid>http://forums.shopify.com/categories/1/posts/19248#comment-20346</guid>
      <description>&lt;p&gt;Thanks Christina.&lt;/p&gt;


	&lt;p&gt;For some reason, I am unable to strip the page title out of the meta keyword displays on my &amp;#8216;collection&amp;#8217; pages.  The code snippet in question is:&lt;/p&gt;


&lt;code&gt;&lt;pre&gt;
&amp;lt;meta name="keyword" content=" 
{% capture meta_default %}
    {% case template %}
        {% when 'collection' %}
            {{page_title}}{% if collection.keyword.size &amp;gt; 0 %} {{collection.keyword | strip_html | truncatewords:maxwords}}{% endif %}
        {% when 'product' %}
            {{page_title}}{% if product.keyword.size &amp;gt; 0 %}: {{product.keyword | strip_html | truncatewords:maxwords}}{% endif %}
        {% when 'blog' %}
            {% if blog.articles.size == 1 %}
                {% for article in blog.articles %}
                    {{article.content | strip_html | truncatewords:maxwords}}
                {% endfor %}
            {% else %}
                {{page_title}}
            {% endif %}
        {% else %}
             {{shop.name}}: {% if blogs[indexblog].articles.size &amp;gt; 0 %}: {% for article in blogs[indexblog].articles limit:1 %}{{ article.title }}: {{article.content | strip_html | truncatewords:maxwords}}{% endfor %}{% endif %}
    {% endcase %} 
{% endcapture %}
&lt;/pre&gt;&lt;/code&gt;

	&lt;p&gt;I deleted  {{page_title}}  from the &amp;#8220;collection&amp;#8217; portion, but it still displays prior to the metakeywords. Is it being fed from the blog which, of course, has the same title? &lt;span class="caps"&gt;FYI&lt;/span&gt;, I want to retain the titles for all other pages, just not on the &amp;#8216;collection&amp;#8217; pages.&lt;/p&gt;


	&lt;p&gt;What am I missing?&lt;/p&gt;</description>
    </item>
    <item>
      <title>Guy15 commented</title>
      <author>Guy15</author>
      <pubDate>Mon, 14 Jul 2008 04:45:11 +0000</pubDate>
      <link>http://forums.shopify.com/categories/1/posts/19248#comment-20795</link>
      <guid>http://forums.shopify.com/categories/1/posts/19248#comment-20795</guid>
      <description>&lt;p&gt;Christina, and everyone.  I hate to sound dumb but I have been reading these meta tag forums for hours and it doesnt all make complete sense to me yet.&lt;/p&gt;


	&lt;p&gt;Where do I put this code in assets, and what variables do i change, with my own data?  I simply need to incorporate meta descriptions and am at square 1.  Though my site generates sales daily, I am a beginner with coding.  Be gentle.&lt;/p&gt;


	&lt;p&gt;&lt;a href="http://www.breastformshop.com"&gt;www.breastformshop.com&lt;/a&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>Christina commented</title>
      <author>Christina</author>
      <pubDate>Mon, 14 Jul 2008 07:29:17 +0000</pubDate>
      <link>http://forums.shopify.com/categories/1/posts/19248#comment-20800</link>
      <guid>http://forums.shopify.com/categories/1/posts/19248#comment-20800</guid>
      <description>&lt;p&gt;code doesn&amp;#8217;t go into assets; it goes into templates.&lt;br /&gt;this one goes into the template called &amp;#8220;theme&amp;#8221;.&lt;br /&gt;go to admin -&gt;assets -&gt;theme editor.&lt;br /&gt;click on &amp;#8220;theme&amp;#8221;. &lt;strong&gt;copy and paste the code that you see there to a safe place,&lt;/strong&gt; (such as notepad, if you&amp;#8217;re on windows.)  &lt;strong&gt;make a backup. make another backup.&lt;/strong&gt;  then you can start messing around with it.  copy and paste the code from here to your theme template, after the first line of &lt;code&gt;meta&lt;/code&gt; tag you see.  that&amp;#8217;s basically it.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Guy15 commented</title>
      <author>Guy15</author>
      <pubDate>Mon, 14 Jul 2008 13:45:10 +0000</pubDate>
      <link>http://forums.shopify.com/categories/1/posts/19248#comment-20813</link>
      <guid>http://forums.shopify.com/categories/1/posts/19248#comment-20813</guid>
      <description>&lt;p&gt;so then I just replace the words &amp;#8220;keywords&amp;#8221; and &amp;#8220;description&amp;#8221; with my own?  Do keywords need to be separated with comma or just space? thanks&lt;/p&gt;</description>
    </item>
    <item>
      <title>Guy15 commented</title>
      <author>Guy15</author>
      <pubDate>Mon, 14 Jul 2008 17:42:09 +0000</pubDate>
      <link>http://forums.shopify.com/categories/1/posts/19248#comment-20822</link>
      <guid>http://forums.shopify.com/categories/1/posts/19248#comment-20822</guid>
      <description>&lt;p&gt;Also do I have to change &amp;#8216;page_title&amp;#8217; or anything to meet my handles?&lt;/p&gt;</description>
    </item>
    <item>
      <title>Guy15 commented</title>
      <author>Guy15</author>
      <pubDate>Fri, 18 Jul 2008 04:11:02 +0000</pubDate>
      <link>http://forums.shopify.com/categories/1/posts/19248#comment-20914</link>
      <guid>http://forums.shopify.com/categories/1/posts/19248#comment-20914</guid>
      <description>&lt;p&gt;bump&lt;/p&gt;</description>
    </item>
    <item>
      <title>Caroline Schnapp commented</title>
      <author>Caroline Schnapp</author>
      <pubDate>Fri, 18 Jul 2008 15:42:16 +0000</pubDate>
      <link>http://forums.shopify.com/categories/1/posts/19248#comment-20921</link>
      <guid>http://forums.shopify.com/categories/1/posts/19248#comment-20921</guid>
      <description>&lt;blockquote&gt;so then I just replace the words &#8220;keywords&#8221; and &#8220;description&#8221; with my own?&lt;/blockquote&gt;

	&lt;p&gt;No.&lt;/p&gt;


	&lt;p&gt;Christina said: &amp;#8220;copy and paste the code from here to your theme&amp;#8221;.&lt;/p&gt;


&lt;blockquote&gt;Also do I have to change &#8216;page_title&#8217; or anything to meet my handles?&lt;/blockquote&gt;

	&lt;p&gt;No again.&lt;/p&gt;


	&lt;p&gt;Christina said: &amp;#8220;copy and paste the code from here to your theme&amp;#8221;.&lt;/p&gt;


	&lt;p&gt;Sorry to barge in.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Guy15 commented</title>
      <author>Guy15</author>
      <pubDate>Fri, 18 Jul 2008 16:45:37 +0000</pubDate>
      <link>http://forums.shopify.com/categories/1/posts/19248#comment-20923</link>
      <guid>http://forums.shopify.com/categories/1/posts/19248#comment-20923</guid>
      <description>&lt;p&gt;I thought thats what she meant but how am I supposed to determine what keywords to use?  I would like to pick keywords most relevant.  Thanks&lt;/p&gt;</description>
    </item>
    <item>
      <title>Guy15 commented</title>
      <author>Guy15</author>
      <pubDate>Fri, 25 Jul 2008 17:31:55 +0000</pubDate>
      <link>http://forums.shopify.com/categories/1/posts/19248#comment-21111</link>
      <guid>http://forums.shopify.com/categories/1/posts/19248#comment-21111</guid>
      <description>&lt;p&gt;Ok I am learning some of the lingo and I figured out most of this.  The only thing I want to figure out is how I can enter some code that I can determine my own keywords, rather than let it pull the title (which isn&amp;#8217;t showing up anyway).  So do I make another page called keywords then fill it in or what?  I almost have this, thanks.&lt;/p&gt;


	&lt;p&gt;&lt;a href="http://www.ozonhair.com"&gt;www.ozonhair.com&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.breastformshop.com"&gt;www.breastformshop.com&lt;/a&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>Internet Marketing commented</title>
      <author>Internet Marketing</author>
      <pubDate>Wed, 10 Sep 2008 06:14:56 +0000</pubDate>
      <link>http://forums.shopify.com/categories/1/posts/19248#comment-22077</link>
      <guid>http://forums.shopify.com/categories/1/posts/19248#comment-22077</guid>
      <description>&lt;p&gt;Need help&amp;#8230;..I can&amp;#8217;t get unique meta tags to work on each of my pages. I am using the following code.&lt;/p&gt;


	&lt;p&gt;Based on this post &lt;a href="http://www.bestrank.com/blog/making-your-shopify-site-seo-friendly-141/#comment-1243"&gt;http://www.bestrank.com/blog/making-your-shopify-site-seo-friendly-141/#comment-1243&lt;/a&gt; it should work.&lt;/p&gt;


	&lt;p&gt;Any help? please&amp;#8230;..thank you.&lt;/p&gt;


	&lt;p&gt;{% case page_title %}&lt;br /&gt;{% when null %}&lt;br /&gt;&amp;lt;title&amp;gt;{{shop.name}} &amp;#8211; {{page_title}}&amp;lt;/title&amp;gt;&lt;br /&gt;{% when &#8216;Welcome&#8217; %}&lt;br /&gt;&amp;lt;title&amp;gt;T-Shirt Printer | T-Shirt Customization&amp;lt;/title&amp;gt;&lt;br /&gt;&amp;lt;meta name="&#8221;keywords&#8221;" content="&#8221;t-shirt" printing&amp;gt;&lt;br /&gt;&amp;lt;meta t-shirt name="&#8221;description&#8221;" and own customize content="&#8221;Create" your&amp;gt;&lt;br /&gt;{% else %}&lt;br /&gt;&amp;lt;title&amp;gt;{{shop.name}} | {{page_title}}&amp;lt;/title&amp;gt;&lt;br /&gt;{% assign maxwords = 20 %}&lt;br /&gt;{% assign indexblog = &#8216;frontpage&#8217; %}&lt;/p&gt;


	&lt;p&gt;{% case template %}&lt;br /&gt;{% when &#8216;collection&#8217; %}&lt;br /&gt;&amp;lt;meta name="&#8221;description&#8221;" collection if content="&#8221;{{page_title}}{%"&amp;gt; 0 %}: {{collection.description | strip_html | truncatewords:maxwords}}{% endif %}&#8221;/&gt;&lt;br /&gt;&amp;lt;meta name="&#8221;keywords&#8221;" collection if content="&#8220;{{collection.title}}{%"&amp;gt; 0 %}: {{ collection.tags | join: &#8216;, &#8216; }}{% endif %}&#8221; /&gt;&lt;br /&gt;{% when &#8216;product&#8217; %}&lt;br /&gt;&amp;lt;meta name="&#8221;description&#8221;" product if content="&#8221;{{page_title}}{%"&amp;gt; 0 %}: {{product.description | strip_html | truncatewords:maxwords}}{% endif %}&#8221;/&gt;&lt;br /&gt;&amp;lt;meta name="&#8221;keywords&#8221;" product if content="&#8221;{{product.title}}{%"&amp;gt; 0 %}: {{ product.tags | join: &#8216;, &#8216; }}{% endif %}&#8221;&gt;&lt;br /&gt;{% when &#8216;page&#8217; %}&lt;br /&gt;&amp;lt;meta name="&#8221;description&#8221;" content="&#8221;{{page_title}}:"&amp;gt;&lt;br /&gt;&amp;lt;meta name="&#8221;keywords&#8221;" content="&#8221;{{page_title}}&#8221;"&amp;gt;&lt;br /&gt;{% when &#8216;blog&#8217; %}&lt;br /&gt;&amp;lt;meta name="&#8221;description&#8221;" content="&#8221;{{page_title}}&#8221;" /&amp;gt;&lt;br /&gt;&amp;lt;meta name="&#8221;keywords&#8221;" content="&#8221;{{page_title}}&#8221;"&amp;gt;&lt;br /&gt;{% else %}&lt;br /&gt;&amp;lt;meta name="&#8221;description&#8221;" if content="&#8221;{{shop.name}}{%" blogs&amp;gt; 0 %}: {% for article in blogs.[indexblog].articles limit:1 %}{{ article.title }}: {{article.content | strip_html | truncatewords:maxwords}}{% endfor %}{% endif %}&#8221;/&gt;&lt;br /&gt;&amp;lt;meta name="&#8221;keywords&#8221;" linklists in content="&#8220;{%" link for&amp;gt;&lt;br /&gt;{% endcase %}&lt;br /&gt;{% endcase %}&lt;/p&gt;</description>
    </item>
    <item>
      <title>Christina commented</title>
      <author>Christina</author>
      <pubDate>Thu, 18 Sep 2008 17:38:15 +0000</pubDate>
      <link>http://forums.shopify.com/categories/1/posts/19248#comment-22283</link>
      <guid>http://forums.shopify.com/categories/1/posts/19248#comment-22283</guid>
      <description>&lt;p&gt;whose site is that you link to?&lt;/p&gt;


	&lt;p&gt;that page says &lt;em&gt;&amp;#8221;&lt;strong&gt;we came up&lt;/strong&gt; with a relatively simple way to include custom tags on your Shopify site&amp;#8221;&lt;/em&gt;&lt;/p&gt;


	&lt;p&gt;more like &lt;em&gt;&amp;#8221;we grabbed this code from right here (see above), mangled it because we don&amp;#8217;t understand it, and then posted it on our site as ours.&lt;/em&gt;&amp;#8221;&lt;/p&gt;</description>
    </item>
    <item>
      <title>Caroline Schnapp commented</title>
      <author>Caroline Schnapp</author>
      <pubDate>Thu, 18 Sep 2008 19:41:35 +0000</pubDate>
      <link>http://forums.shopify.com/categories/1/posts/19248#comment-22287</link>
      <guid>http://forums.shopify.com/categories/1/posts/19248#comment-22287</guid>
      <description>&lt;p&gt;Usually, those who claim they are &lt;span class="caps"&gt;SEO&lt;/span&gt; specialists know shit about &lt;span class="caps"&gt;HTML&lt;/span&gt;. (And if I dare say, have very relaxed ethics in general&amp;#8230;)&lt;/p&gt;


	&lt;p&gt;It is imperative that these folks know about &lt;span class="caps"&gt;HTML&lt;/span&gt; because search engines read &lt;span class="caps"&gt;HTML&lt;/span&gt;.&lt;/p&gt;


	&lt;p&gt;That is ludicrous (from &amp;#8216;the&amp;#8217; site):&lt;/p&gt;


&lt;blockquote&gt;You want to place the code between the head tag and body tag on the theme.liquid page.&lt;/blockquote&gt;

	&lt;p&gt;More like between the opening and closing tags of the head element.&lt;/p&gt;


	&lt;p&gt;In his response to Christina he states that:&lt;/p&gt;


&lt;blockquote&gt;Also, all of the conditionals that we worked with were placed on the &#8220;theme.liquid&#8221; page as opposed to altering each individual template page.&lt;/blockquote&gt;

	&lt;p&gt;Christina never said you have to alter template pages. Why would she use a conditional on the type of template if she did not place her code in theme.liquid?&lt;/p&gt;


	&lt;p&gt;The blind leading the blind.&lt;/p&gt;


	&lt;p&gt;People who want to ride the wave of ecommerce, but who are not computer-savvy, become &lt;span class="caps"&gt;SEO&lt;/span&gt; specialists, quite often. They remind me of chiropracters (although like chiropracters there are probably a few good ones out there): &amp;#8220;Give me a couple of thousands dollars (or hundreds) and you will feel less pain. Of course, it&amp;#8217;s &lt;em&gt;not&lt;/em&gt; for tomorrow, it will take 3-4 months, maybe more time&amp;#8230;&amp;#8221; Etc.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Caroline Schnapp commented</title>
      <author>Caroline Schnapp</author>
      <pubDate>Thu, 18 Sep 2008 19:45:28 +0000</pubDate>
      <link>http://forums.shopify.com/categories/1/posts/19248#comment-22288</link>
      <guid>http://forums.shopify.com/categories/1/posts/19248#comment-22288</guid>
      <description>&lt;p&gt;Repeat. Bad Internet connection.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Caroline Schnapp commented</title>
      <author>Caroline Schnapp</author>
      <pubDate>Wed, 24 Jun 2009 14:06:52 +0000</pubDate>
      <link>http://forums.shopify.com/categories/1/posts/19248#comment-27924</link>
      <guid>http://forums.shopify.com/categories/1/posts/19248#comment-27924</guid>
      <description>&lt;p&gt;John Stevesone is a spammer. Please ban these people&amp;#8230;&lt;/p&gt;</description>
    </item>
    <item>
      <title>tobi commented</title>
      <author>tobi</author>
      <pubDate>Wed, 24 Jun 2009 14:08:50 +0000</pubDate>
      <link>http://forums.shopify.com/categories/1/posts/19248#comment-27925</link>
      <guid>http://forums.shopify.com/categories/1/posts/19248#comment-27925</guid>
      <description>&lt;p&gt;he is gone ;-)&lt;/p&gt;


	&lt;p&gt;The suggestions in this thread are good. We also have a little feature on our roadmap that will allow people to enter per page meta tag overrides and page title overrides.&lt;/p&gt;


	&lt;p&gt;This should be part of a deployment this summer.&lt;/p&gt;</description>
    </item>
    <item>
      <title>thepims commented</title>
      <author>thepims</author>
      <pubDate>Thu, 25 Jun 2009 13:39:04 +0000</pubDate>
      <link>http://forums.shopify.com/categories/1/posts/19248#comment-27939</link>
      <guid>http://forums.shopify.com/categories/1/posts/19248#comment-27939</guid>
      <description>&lt;p&gt;@Tobi please please please! That would be great!&lt;/p&gt;</description>
    </item>
    <item>
      <title>AlexWyatt commented</title>
      <author>AlexWyatt</author>
      <pubDate>Thu, 03 Sep 2009 21:04:24 +0000</pubDate>
      <link>http://forums.shopify.com/categories/1/posts/19248#comment-29142</link>
      <guid>http://forums.shopify.com/categories/1/posts/19248#comment-29142</guid>
      <description>&lt;p&gt;Okay I just had some time to take a look at Meta Tags, I have been busy dealing with other things. But I think possibly I should take a look at this issue.&lt;/p&gt;


	&lt;p&gt;I love Shopify but I get annoyed when I see others competitors Rank higher. I sell Games and Gadgets etc but I am no expert on Key Words.&lt;/p&gt;


	&lt;p&gt;Suggestions please ?&lt;/p&gt;


	&lt;p&gt;&lt;a href="http://www.channelgoods.com"&gt;www.channelgoods.com&lt;/a&gt; is my website &amp;#8230;. can someone have a look at my tags or make a suggestion how I can improve them.&lt;/p&gt;


	&lt;p&gt;Consolesandgagets &amp;#8230;this is a website that ranks so high on google in the same market as me&amp;#8230;what are they doing right and I am doing wrong ?&lt;/p&gt;


	&lt;p&gt;Help my fellow Shopify supporters&lt;/p&gt;</description>
    </item>
    <item>
      <title>Stuart Whitman commented</title>
      <author>Stuart Whitman</author>
      <pubDate>Fri, 04 Sep 2009 10:53:39 +0000</pubDate>
      <link>http://forums.shopify.com/categories/1/posts/19248#comment-29161</link>
      <guid>http://forums.shopify.com/categories/1/posts/19248#comment-29161</guid>
      <description>&lt;p&gt;Alex,&lt;/p&gt;


	&lt;p&gt;The code that Christina supplied is pretty good and can be modified relatively easily. I would say the title tag is the most important and the keywords apart from the homepage aren&amp;#8217;t worth bothering about.&lt;/p&gt;


	&lt;p&gt;The is the code I use on my &lt;a href="http://collateit.co.uk"&gt;http://collateit.co.uk&lt;/a&gt; site&lt;br /&gt;&lt;code&gt;&lt;pre&gt;
{% assign maxwords = 20 %}
{% assign indexblog = 'frontpage' %}

{% case template %}
    {% when 'collection' %}
        &amp;lt;meta name="description" content="{% if collection.description.size &amp;gt; 0 %} {{collection.description | strip_html | truncatewords:maxwords}}{% endif %}"/&amp;gt;
        &amp;lt;meta name="keywords" content= "{{collection.title}}{% if collection.tags.size &amp;gt; 0 %} {{ collection.tags | join: ', ' }}{% endif %}" /&amp;gt;
    &amp;lt;title&amp;gt;{{ page_title }}&amp;lt;/title&amp;gt;
    {% when 'product' %}
        &amp;lt;meta name="description" content="{% if product.description.size &amp;gt; 0 %}{{product.description | strip_html | truncatewords:maxwords}}{% endif %}, Price {{ product.price | money }}"/&amp;gt;
        &amp;lt;meta name="keywords" content="{% if product.tags.size &amp;gt; 0 %}{{ product.tags | join: ', ' }}{% endif %}{{product.title}}" /&amp;gt;
        {% case product.handle %}
           {% when 'sage-compatible-1pt-a4-invoice' %}
              &amp;lt;title&amp;gt;Sage Invoices - {{ page_title }} - Sage Invoice Stationary&amp;lt;/title&amp;gt;
           {% when 'sage-compatible-1-part-a4-statement-remittance' %}
              &amp;lt;title&amp;gt;Sage Statement Remittances - {{ page_title }} - Sage Statements Stationary&amp;lt;/title&amp;gt;
           {% when 'sage-compatible-1pt-a4-laser-payslip-plus-address' %}
              &amp;lt;title&amp;gt;Sage Payslip with Address - {{ page_title }} - Sage Payslip Stationary&amp;lt;/title&amp;gt;
           {% when 'sage-compatible-1pt-a4-laser-payslip' %}
              &amp;lt;title&amp;gt;Sage Payslips - {{ page_title }} - Sage Payslips Stationary&amp;lt;/title&amp;gt;
           {% when 'sage-compatible-1pt-a4-laser-pressure-seal-payslip' %}
              &amp;lt;title&amp;gt;Sage Pressure Seal Payslip - {{ page_title }} - Sage Pressureseal Stationary&amp;lt;/title&amp;gt;
           {% when 'iris-compatible-1-part-a4-pay-advice' %}
              &amp;lt;title&amp;gt;Iris Payslips - {{ page_title }} - RF01 Iris Payroll Stationary Payslip&amp;lt;/title&amp;gt;
           {% when 'pegasus-laser-hand-pressure-seal-payslip' %}
              &amp;lt;title&amp;gt;Pegasus Pressure Seal Payslips - RP220 Pegasus Payroll Stationery - Pegasus Payslips&amp;lt;/title&amp;gt;
           {% else %}
               {% case product.vendor %}
                  {% when 'print' %}
          &amp;lt;title&amp;gt;{{ page_title }}&amp;lt;/title&amp;gt;
                  {% else %}
          &amp;lt;title&amp;gt;{{ page_title }} - {% for variant in product.variants %}{%if forloop.first%}{{variant.sku}}{% endif %}{% endfor %} {{product.type}}&amp;lt;/title&amp;gt;
                  {% endcase %}
        {% endcase %}
    {% when 'page' %}
        &amp;lt;meta name="description" content="{{page.content | strip_html | truncatewords:maxwords}}"/&amp;gt;
        &amp;lt;meta name="keywords" content="{{page_title}}" /&amp;gt;
    &amp;lt;title&amp;gt;{{ page_title }}&amp;lt;/title&amp;gt;
    {% when 'cart' %}
    &amp;lt;title&amp;gt;My Basket&amp;lt;/title&amp;gt;
    {% when 'blog' %}
        &amp;lt;meta name="description" content="{{page_title}}" /&amp;gt;
        &amp;lt;meta name="keywords" content="{{page_title}}" /&amp;gt;
    &amp;lt;title&amp;gt;{{ page_title }}&amp;lt;/title&amp;gt;
    {% when 'index' %}
        &amp;lt;meta name="description" content="Save 75% with Compatible Forms for your Sage Accounts, Sage Payroll and Iris PAYE-Master stationery. Everything from Sage Invoices, Sage Statements and Sage Payslips through to Iris Payslips and new security Pressure Seal forms. All paper is available from stock and delivered next day. 100% satisfaction guaranteed. Free samples 0191 440 5595."/&amp;gt;
        &amp;lt;meta name="keywords" content="compatible forms, payslips, invoices, statements, business forms, stationery, stationary, accounts, accounting, payroll, pre-printed, collateit, sage, iris, paye master, pegasus" /&amp;gt;
    &amp;lt;title&amp;gt;Sage Stationery - Compatible Forms - Iris Stationary - Everyday low prices on Sage Iris Pegasus Paper Forms&amp;lt;/title&amp;gt;
    {% else %}
        &amp;lt;meta name="description" content="{{shop.name}}{% if blogs.[indexblog].articles.size &amp;gt; 0 %}: {% for article in blogs.[indexblog].articles limit:1 %}{{ article.title }}: {{article.content | strip_html | truncatewords:maxwords}}{% endfor %}{% endif %}" /&amp;gt;
        &amp;lt;meta name="keywords" content= "{% for link in linklists.Main-Menu.links %}{% if link.type == 'collection_link' %}{{link.title}} {% endif %}{% endfor %}" /&amp;gt;
{% endcase %}
&lt;/pre&gt;&lt;/code&gt;&lt;/p&gt;


	&lt;p&gt;I picked my top selling products then created a simple case statement checking for the relevant handle e.g.&lt;br /&gt;&lt;pre&gt;&lt;code&gt;
        {% case product.handle %}
           {% when 'sage-compatible-1pt-a4-invoice' %}
              &amp;lt;title&amp;gt;My title goes here - try repeating your keywords twice&amp;lt;/title&amp;gt;
&lt;/pre&gt;&lt;/code&gt;&lt;/p&gt;


	&lt;p&gt;I would also suggest you use the h1 and h2 tags on your product page for your keywords/phrases and repeat them within your copy.&lt;/p&gt;


	&lt;p&gt;Once you&amp;#8217;ve done that it&amp;#8217;s all about the links. &lt;span class="caps"&gt;YOU NEED TO GET INCOMING LINKS&lt;/span&gt; from good quality sites.&lt;/p&gt;


	&lt;p&gt;So you need to think about forums, blogs, twitter etc and just keep working at that.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Caroline Schnapp commented</title>
      <author>Caroline Schnapp</author>
      <pubDate>Fri, 04 Sep 2009 15:31:07 +0000</pubDate>
      <link>http://forums.shopify.com/categories/1/posts/19248#comment-29172</link>
      <guid>http://forums.shopify.com/categories/1/posts/19248#comment-29172</guid>
      <description>&lt;p&gt;Stuart knows more about &lt;span class="caps"&gt;SEO&lt;/span&gt; than 99% of self-proclaimed &lt;span class="caps"&gt;SEO &lt;/span&gt;(&amp;lt;del&amp;gt;scam artists&amp;lt;/del&amp;gt;) specialists out there. I agree with 100% he said. Read it again and again. Apply as much of it as you can. What we need to do now is not the same as what we needed to do 5 years ago, and it will change somewhat again in the future, but Stuart&amp;#8217;s advice is current and very wise.&lt;/p&gt;


	&lt;p&gt;Thank you, Stuart. You have a heart of gold.&lt;/p&gt;


	&lt;p&gt;PS. You average run of the mill &lt;span class="caps"&gt;SEO&lt;/span&gt; sleeze site out there knows close to nothing about what they&amp;#8217;re saying, unfortunately. So beware.&lt;/p&gt;</description>
    </item>
    <item>
      <title>AlexWyatt commented</title>
      <author>AlexWyatt</author>
      <pubDate>Fri, 04 Sep 2009 18:07:13 +0000</pubDate>
      <link>http://forums.shopify.com/categories/1/posts/19248#comment-29174</link>
      <guid>http://forums.shopify.com/categories/1/posts/19248#comment-29174</guid>
      <description>&lt;p&gt;Stuart if you have some time I could pay for your help or send you some free products. I am not a Tech guy and I only trust the Shopify experienced people to help me with this one. I get afraid when I am about to mess with my code. Are you on SKype or anywhere that we could arrange for the code to get dropped in.&lt;/p&gt;</description>
    </item>
    <item>
      <title>AlexWyatt commented</title>
      <author>AlexWyatt</author>
      <pubDate>Fri, 04 Sep 2009 18:09:21 +0000</pubDate>
      <link>http://forums.shopify.com/categories/1/posts/19248#comment-29175</link>
      <guid>http://forums.shopify.com/categories/1/posts/19248#comment-29175</guid>
      <description>&lt;p&gt;I use &lt;span class="caps"&gt;PR &lt;/span&gt;News also and Twitter, I do the links everyday and to good sites.&lt;/p&gt;


	&lt;p&gt;Regards&lt;/p&gt;


	&lt;p&gt;&lt;a href="http://www.channelgoods.com"&gt;www.channelgoods.com&lt;/a&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>Caroline Schnapp commented</title>
      <author>Caroline Schnapp</author>
      <pubDate>Fri, 04 Sep 2009 19:02:47 +0000</pubDate>
      <link>http://forums.shopify.com/categories/1/posts/19248#comment-29176</link>
      <guid>http://forums.shopify.com/categories/1/posts/19248#comment-29176</guid>
      <description>&lt;blockquote&gt;
		&lt;p&gt;Stuart if you have some time I could pay for your help or send you some free products.&lt;/p&gt;
	&lt;/blockquote&gt;


	&lt;p&gt;His post to you is invaluable. You should definitely pay him already just for that :)&lt;/p&gt;</description>
    </item>
    <item>
      <title>AlexWyatt commented</title>
      <author>AlexWyatt</author>
      <pubDate>Fri, 04 Sep 2009 21:29:13 +0000</pubDate>
      <link>http://forums.shopify.com/categories/1/posts/19248#comment-29181</link>
      <guid>http://forums.shopify.com/categories/1/posts/19248#comment-29181</guid>
      <description>&lt;p&gt;Caroline I trust every word you print.&lt;/p&gt;


	&lt;p&gt;&lt;a href="http://www.channelgoods.com"&gt;www.channelgoods.com&lt;/a&gt;&lt;/p&gt;


	&lt;p&gt;Stuart thanks for the emails&lt;/p&gt;</description>
    </item>
    <item>
      <title>tobi commented</title>
      <author>tobi</author>
      <pubDate>Wed, 23 Sep 2009 18:24:58 +0000</pubDate>
      <link>http://forums.shopify.com/categories/1/posts/19248#comment-29676</link>
      <guid>http://forums.shopify.com/categories/1/posts/19248#comment-29676</guid>
      <description>&lt;p&gt;&lt;a href="http://googlewebmastercentral.blogspot.com/2009/09/google-does-not-use-keywords-meta-tag.html"&gt;Google does not use the keywords meta tag in web ranking&lt;/a&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>Jen commented</title>
      <author>Jen</author>
      <pubDate>Sat, 24 Oct 2009 02:43:20 +0000</pubDate>
      <link>http://forums.shopify.com/categories/1/posts/19248#comment-30505</link>
      <guid>http://forums.shopify.com/categories/1/posts/19248#comment-30505</guid>
      <description>&lt;p&gt;I like the way shopify works with the shop name and the page titles, it really makes seo work easier on me. &amp;nbsp;:D &amp;nbsp;Normally I have :&lt;/p&gt;
&lt;p&gt;&lt;span&gt; &lt;/span&gt;&lt;/p&gt;
&lt;pre&gt;&amp;lt;title&amp;gt;{{shop.name}} - {{page_title}}&amp;lt;/title&amp;gt;&lt;/pre&gt;
&lt;p&gt;and also&lt;span&gt;&amp;nbsp;&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;span&gt; &lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;pre&gt;{% case template %}
    {% when 'collection' %}
        &amp;lt;meta name="description" content="{{page_title}}{% if collection.description.size &amp;gt; 0 %}: {{collection.description | strip_html | truncatewords:maxwords}}{% endif %}"/&amp;gt;
        &amp;lt;meta name="keywords" content= "{{collection.title}}{% if collection.tags.size &amp;gt; 0 %}: {{ collection.tags | join: ', ' }}{% endif %}" /&amp;gt;
    {% when 'product' %}
        &amp;lt;meta name="description" content="{{page_title}}{% if product.description.size &amp;gt; 0 %}: {{product.description | strip_html | truncatewords:maxwords}}{% endif %}"/&amp;gt;
        &amp;lt;meta name="keywords" content="{{product.title}}{% if product.tags.size &amp;gt; 0 %}: {{ product.tags | join: ', ' }}{% endif %}"&amp;gt;
    {% when 'page' %}
        &amp;lt;meta name="description" content="{{page_title}}: {{page.content | strip_html | truncatewords:maxwords}}"/&amp;gt;
        &amp;lt;meta name="keywords" content="{{page_title}}"&amp;gt;
    {% when 'blog' %}
        &amp;lt;meta name="description" content="{{page_title}}"/&amp;gt;
        &amp;lt;meta name="keywords" content="{{page_title}}"&amp;gt;
    {% else %}
        &amp;lt;meta name="description" content="{{shop.name}}{% if blogs.[indexblog].articles.size &amp;gt; 0 %}: {% for article in blogs.[indexblog].articles limit:1 %}{{ article.title }}: {{article.content | strip_html | truncatewords:maxwords}}{% endfor %}{% endif %}"/&amp;gt;
        &amp;lt;meta name="keywords" content= "{% for link in linklists.Main-Menu.links %}{% if link.type == 'collection_link' %}{{link.title}} {% endif %}{% endfor %}" /&amp;gt;
{% endcase %}&lt;/pre&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;I don't really want to change that part of it, only the index page to be this:&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt; &lt;/span&gt;&lt;/p&gt;
&lt;pre&gt;{% when 'index' %}
        &amp;lt;meta name="description" content="Shop for your Intimates - Bras, Panties, Lingerie, Maternity, Active Wear, Shape Wear, Swim Wear, Costumes, Mastectomy, Post Operative and More!"/&amp;gt;
        &amp;lt;meta name="keywords" content="Magnifique, Intimates, Bras, Panties, Lingerie, Maternity, Active Wear, Shape Wear, Swim Wear, Costumes, Mastectomy, Post Operative" /&amp;gt;
        &amp;lt;title&amp;gt;Magnifique - Shop for your Intimates - Bras, Panties, Lingerie and More!&amp;lt;/title&amp;gt;&lt;/pre&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;So I realized in dabbling on my own that I had to take out:&lt;/span&gt;&lt;/p&gt;
&lt;pre&gt;&amp;lt;title&amp;gt;{{shop.name}} - {{page_title}}&amp;lt;/title&amp;gt;&lt;/pre&gt;
&lt;p&gt;&lt;span&gt;&lt;span&gt;&lt;span&gt;&lt;span&gt;or else the shop name would override the index command I put in.  I took it out, that worked GREAT for my index page....but....then the rest of my pages don't work quite the same.  I notice as I browse from page to page that they are showing the website URL briefly and then the shop name and page title come up.  how can I keep it from doing that?  what am I missing?  any guesses?  :D In the meantime I changed it back to the way it was since that works good for the rest of my pages.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>Julene commented</title>
      <author>Julene</author>
      <pubDate>Sat, 24 Oct 2009 16:01:54 +0000</pubDate>
      <link>http://forums.shopify.com/categories/1/posts/19248#comment-30511</link>
      <guid>http://forums.shopify.com/categories/1/posts/19248#comment-30511</guid>
      <description>&lt;p&gt;I think you just need to reference the title code in each of your "When" conditions so that you can control all&amp;nbsp; titles. When 'index' can have exactly what text you want for the main page, and the others can make use of the variables shop.name and page_title. Make sense?&lt;/p&gt;</description>
    </item>
    <item>
      <title>Jen commented</title>
      <author>Jen</author>
      <pubDate>Tue, 27 Oct 2009 03:08:44 +0000</pubDate>
      <link>http://forums.shopify.com/categories/1/posts/19248#comment-30563</link>
      <guid>http://forums.shopify.com/categories/1/posts/19248#comment-30563</guid>
      <description>&lt;p&gt;@Julene,&lt;/p&gt;
&lt;p&gt;Thanks for the reply. &amp;nbsp;I'm sorry I'm not quite following...I did change the index so that it worked and the others were actually working too, my problem is that for a brief second (and maybe most wouldn't notice this but it bothers me) it shows my URL for that page and then the shop name and the page title come up. &amp;nbsp;so for those who are not looking at the tab on the top, they probably wouldn't notice it at all because once it blinks the URL, it then goes away and the shop name and page title are there for you to see after that. &amp;nbsp;but I don't want it to blink that URL. &amp;nbsp;all else is working though. &amp;nbsp;but please note that I did change it back to it's original way so that it doesn't blink the URLs&lt;/p&gt;</description>
    </item>
    <item>
      <title>Beechy commented</title>
      <author>Beechy</author>
      <pubDate>Tue, 10 Nov 2009 14:33:43 +0000</pubDate>
      <link>http://forums.shopify.com/categories/1/posts/19248#comment-30892</link>
      <guid>http://forums.shopify.com/categories/1/posts/19248#comment-30892</guid>
      <description>&lt;p&gt;Is there a way to add a unique page title to a collection tag...&lt;/p&gt;
&lt;p&gt;i.e if I am at the url /collections/shirts/green-shirts&lt;/p&gt;</description>
    </item>
    <item>
      <title>Rachael Designer commented</title>
      <author>Rachael Designer</author>
      <pubDate>Fri, 13 Nov 2009 17:45:26 +0000</pubDate>
      <link>http://forums.shopify.com/categories/1/posts/19248#comment-31001</link>
      <guid>http://forums.shopify.com/categories/1/posts/19248#comment-31001</guid>
      <description>&lt;p&gt;Hi Stuart, I'm sure you've had a lot of responses after posting the code snippet above... Your site looks really good from a SEO point of view- especially impressed with every page having a unique page title. Does the code generate this?&lt;/p&gt;</description>
    </item>
    <item>
      <title>Stuart Whitman commented</title>
      <author>Stuart Whitman</author>
      <pubDate>Fri, 13 Nov 2009 19:49:56 +0000</pubDate>
      <link>http://forums.shopify.com/categories/1/posts/19248#comment-31002</link>
      <guid>http://forums.shopify.com/categories/1/posts/19248#comment-31002</guid>
      <description>&lt;p&gt;Hi Rachael,&lt;/p&gt;
&lt;p&gt;Shopify uses the product title as the page title as standard when viewing a product page so you should get unqiue title tags anyway.&lt;/p&gt;
&lt;p&gt;All I've done is supplemented this with additional data to suit my particular store. It really depends what niche your in as to what 'extremes' you want to take it.&lt;/p&gt;</description>
    </item>
  </channel>
</rss>
