Archive for SEO

How to Find the Supply and Demand of Keywords

// February 5th, 2008 // No Comments » // Google, SEO, eCommerce

1. Go to : http://freekeywords.wordtracker.com 2. Type in the keyword phrase you’re researching for. Click on “Hit Me”. 3. The number next to the keyword phrase is how many times a day people type in the keyword phrase. This is called the “demand”. (Note: you want this number to be at least 15-20).

1. Go to Google http://google.com 2. In the search bar type: allintitle: keyword phrase 3. Hit enter. The search result number presented is the “supply” or “competition”, and is how many sites have those keywords within the html title tag of their sites. (Note: you want this number to be below 30k).

Custom Meta Descriptions, Meta Keywords, and Title Tags in Shopify

// November 21st, 2007 // No Comments » // SEO, Shopify, Web Builders, eCommerce

UPDATED:

Shopify can be a great web builder, especially if you want complete product control and full customization to the template. The programming language in Shopify is mainly written in Ruby On Rails. Unfortunately, Shopify doesn’t have a way to do custom meta and title tags built in. However, with some tweaking having your own custom meta tags and title tags is possible. Similar directions can be found in Shopify’s forums where other great insights can be found. Well, with that said, here are the directions for doing this:

1. Login to your Shopify administration.

2. Now click on “Assets” and then click on “Theme Editor”.

3. You will need to edit some things in your template for this to work correctly. Click on “Theme.liquid” to go into the edit page for your main theme file.

4. On this page you will see something like this near the top of the code:

<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>{{shop.name}} - {{page_title}}</title>

{{ 'textile.css' | global_asset_url | stylesheet_tag }}
{{ 'lightbox.css' | global_asset_url | stylesheet_tag }}
{{ 'prototype.js' | global_asset_url | script_tag }}
{{ 'effects.js' | global_asset_url | script_tag }}
{{ 'lightbox.js' | global_asset_url | script_tag }}

{{ 'layout.css' | asset_url | stylesheet_tag }}
{{ 'shop.js' | asset_url | script_tag }}

{{ content_for_header }}
</head>

You will need to DELETE the code that says:

<title>{{ shop.name }} &#124; {{ page_title }}</title>

5. Now add the code the following code between your <head></head> tags:

{% case page_title %}
{% when 'Welcome' %}
<title>Title for your home page</title>
<meta name="description" content="Your description goes here" />
<meta name="keywords" content="Your keywords go here" />

{% when 'Page Name' %}
<title>Title for your home page</title>
<meta name="description" content="Your description goes here" />
<meta name="keywords" content="Your keywords go here" />
{% endcase %}

Replace in the “Page Name” with the name of your page or product exactly as it is named. For example, if I had the page called “The Elephant ate Here” I would replace “Page Name” with “The Elephant ate Here”. You will also want to place your meta own descriptions and meta keywords for the appropriate page.
So, the examples here would then look something like this:

{% case page_title %}
{% when 'Welcome' %}
<title>Title for your home page</title>
<meta name="description" content="Your description goes here" />
<meta name="keywords" content="Your keywords go here" />

{% when 'The Elephant ate Here' %}
<title>The Elephant ate Here | and there is nothing left</title>
<meta name="description" content="The elephant ate everything that was here. There is now nothing left." />
<meta name="keywords" content="elephant, ate here, nothing left, all gone" />
{% endcase %}

You can repeat the following code for each page or product that you would like as well:

{% when 'Page Name' %}
<title>Title for your home page</title>
<meta name="description" content="Your description goes here" />
<meta name="keywords" content="Your keywords go here" />

Click “Save” when finished and then click on “Close” next to the save button to go back to the Theme Editor page.

Meta Tags in Shopify

// October 29th, 2007 // No Comments » // Design, SEO, Shopify, Web Builders, eCommerce

Alright, we’re back. It’s been some time since I’ve posted last. Lots of projects going on at work, at home, and school. One of such projects has been playing around with Shopify. My most recent discovery with Shopify is how to create custom meta tags. Although, I’m still trying to figure out how to create custom meta tags for each page, you can still create custom meta tags for your individual products. What this does basically, is automatically turn the description for your product into the meta description and turn the tags assigned to your product into meta keywords. That’s better than nothing and with using Shopify your main focus is going to be on your products, anyway. Here is what you will need to do to get these this to work:

1. Login to your Shopify admin.

2. Navigate to “Assets” (Shopify recently changed “Look and Feel” to “Assets”). Then click on where it says “Theme Editor”

3. Now click on “Theme.liquid” to open up your layout code for your template.

4. Near the top of the code will be where the header code starts. Look for “<head>”. After the <head> tag enter the following code:

{% if template == “product” %}
<meta name=”description” content=”{{ product.description | strip_html }}” />
<meta name=”keywords” content=”{{ product.tags | join: “,” }}” />
{% endif %}

5. Click “save” when finished for it to take effect.

SEO in a Nutshell

// May 7th, 2007 // 2 Comments » // SEO, eCommerce

The best ways, really, to drive traffic to your site are: 1. Sell a product that there is a demand for and not a lot of competition. And 2. Use keywords and keyword phrases to optimize your site where search engines can find you. You can do this by: selecting good keywords that people are searching for; submitting to directories using good keywords; leave comments on blogs and other public sites; submit articles to article websites; and use your keywords in the text of your site (your text should be 20% keywords). All the while putting links to your site in these keywords. This will create backlinks to your site and will boost your search engine popularity. That is why keyword research is so important.