Recently in SEO
1. Keyword and Competitive Analysis.
Spend some time performing searches. Make a list of keywords and
keyword phrases that you believe a person is likely use to find the
exact products and services you sell. Performing searches using your
list will lead you to your competitors’ sites. Analyze their sites and
try to determine what they are doing to get good placement.
2. Never Try to Trick the Search Engines.
Long-term, high placement in the major search engines requires correct
and thorough optimization techniques. Hidden text, doorway pages, and
link farms don’t work and could result in blacklisting your domain. In
fact, so many webmasters began spamming meta tags with inappropriate
keywords that search engines have greatly de-emphasized the importance
of meta tags on search. Even so, it’s a good idea to add meta tags with
relevant keywords using ProStores built-in features.
3. Product Names and Descriptions.
Probably the most important optimization criterion is the existence of
highly targeted, pertinent, keyword-rich text on your store pages. Your
product names and descriptions must contain relevant keywords for each
specific product in your catalog. Name your products and write your
short and long descriptions so they are effective for selling to
visitors and optimizing for search engines.
Based on your product and category names and descriptions, ProStores will automatically populate your store meta tags with this information—an essential step in optimizing your store for natural search.
4. Category Names and Descriptions.
Text-based category names in your navigation that include keywords and
links to a list of relevant products that also contain keywords in the
product names and short descriptions is highly desirable for search
engines. Optimize for broader keyword phrases by choosing descriptive
category names and using ProStores category descriptions.
5. All Dynamic and No Dead Ends.
There is no need to create static pages for your ProStores store and
insert them among your dynamically created ProStores pages. Doing this
can actually be detrimental. The major search engines’ robots are very
effective at digging deep into even the largest product catalogs.
You should, however, make use of ProStores’ built-in customer service pages—and your home page welcome text—to provide content about your products and what makes your store unique. Not only does this help keep your customers interested, the relevant keywords on these pages help improve your ranking: quality, useful content is essential!
6. Keep it Fresh.
The major search engines recognize fresh and timely content and will
reward you with improved results. Continue to work on improving your
product descriptions, welcome text and other information pages using
timely content that references holidays or popular current events.
Use ProStores’ featured product and category functionality on your ProStores home page and change the products and categories regularly.
7. Measure Your Effectiveness.
The best measurement is not simply an increase in traffic to your
store, but an increase in converting those additional visitors to
buyers. Track your changes and updates to see what’s working and what
isn’t. Use the built-in Urchin Site Analyzer reporting tools, included
with ProStores Business tier and above and look into adding conversion
tracking with Google Analytics or other third party web analytics tool.
In wrapping up, optimizing your store for the major search engines is complex work, but it is not black magic. Invest time into researching the best practices for site optimization and implement what you learn as you go. It may, and likely will, take months to thoroughly optimize your store and for the search engines to completely index your catalog. But if you do it right, the payoff is achieving your sales goals.
Many times, when first starting a design for a ProStores e-commerce site, people are confused by the META tags in the header template (used by default on all pages). Here is a quick, easy way to enjoy relatively good META tag performance on all your pages with one set of SSML template tags.
There are three main META tags that any store should have (you’re on your own for others), Title, Description and Keywords. First, do your homework - make sure you write these well with appropriate use of keywords and keyword phrases. Keep in mind, the earlier a keyword or phrase appears in the value the more important it becomes. Now, lets look at the template tags.
Title
<ss:value source="$page.title"/>
This tag will dynamically assign a title meta tag to each page in your ProStores design that uses the default header. On content pages like About Us, it will use the store name and the page name (Our Online Store: About US) - generally, this works fine but may need tweaking later. On catalog pages (category list and detail pages) the name of the category or product will dynamically appear (Our Online Store: Category One). This makes the category and product names paramount in importance.
Description
<meta name="Description" content="$page.meta.description">
This tag will dynamically assign a description tag to each page in your ProStores design that uses the default header. Content pages do not have a description in the database, so a default should be used. For catalog pages, the category or product description is used automatically - make sure to enter that data in your store. You must not use HTML in those descriptions - HTML in META tags is baaaadd.
Keywords
<meta name="Keywords" content="$page.meta.keywords">
This tag will dynamically assign keyword tag to each page in your ProStores design that uses the default header. Again, content pages do not have keywords - default set is used. Unfortunately, categories do not have database keywords either - we recommend customizing to the hilt to fix this, but the defaults can be set easily. The product keywords are generated by the ProStores system automagically - based on the category name, product name, OEM, and SKU. Using this approach, your product detail pages are perfectly optimized every time. We all want our detail pages found with a search, that is where sales happen after all.
Code Samples
Here is an example of standard META code you may find in a default template set in ProStores. This basic set of META will work great for all your product detail pages - which are the most important - but will not really address any other pages very gracefully.
<ss:value source="$page.title"/>
<meta name="Description" content="$page.meta.description">
<meta name="Keywords" content="$page.meta.keywords">
Here is an example snippet of code that will test for the availability of these elements and use a default if not available. This allows you to specify your own set of keywords and descriptions when they may not be provided by the database of products.
<ss:if test="$page.bodyTemplate.name == 'storefront'">
<title>Set Your StoreFront Title by <ss:value source="$store.name"/></title>
<ss:else/>
<ss:value source="$page.title"/>
</ss:if>
<ss:if test="$page.hasMetaDescription">
<meta name="Description" content="$page.meta.description">
<ss:else/>
<meta name="Description" content="Set your own description">
</ss:if>
<ss:if test="$page.hasMetaKeywords">
<meta name="Keywords" content="$page.meta.keywords">
<ss:else/>
<meta name="Keywords" content="set,your,own,keywords">
</ss:if>
neoverve
Subscribe to the feed for this blog