Add to Technorati Favorites

Creating Downloadable File Links

Sometimes you want to make files available for download off your store. For example, you may want to let users download a PDF file containing detailed product specs. Here is how you do that in Shopify in 3 easy steps.

1. Upload the file

Go to your Account page in Admin (it is the link in the top right, next to Logout).

You should see a link "show uploaded files".

Once you click on that you will be taken to a page where you can upload your PDF

2. Grab the URL

After you upload the PDF, you will see the file listed at the top.

Click on the file and you will see the URL displayed on the left hand side. You now need to copy  the URL to the clipboard.

TIP: You can upload any type of file here, not just PDF's.

3. Add a link in your product page

Finally, go to your product page in Admin, and type in the term that will appear for the link - e.g. "Download Specs". Now highlight the term and click the icon in the toolbar that looks like a chain link.

You can now paste the URL from step 2 into the input field.

This technique works for blog pages as well.

Posted by Christine Krokker on July 09, 2010.

Improving Organic Search Engine Rankings

Organic Search Engine Rankings refers to where your page appears when someone types in keywords in a search engine such as Google. Your site needs to be optimized to get the best possible ranking.

Your typical Shopify theme is already compatible with the technical aspects of SEO (Search Engine Optimization), following the design guidelines that make it easy for search engines to index your content, but first they have to know about your site.

Submitting your Site

To get started, you need to submit your site to the search engine. Here are the links:

Once you have submitted your site it is added to the queue so that their "spiders" will index it - normally after a few days.

Tuning your Keywords

While you are waiting, you might want to spend a few minutes tuning your page content to your specific keywords (you have specific keywords right?). You can get an idea of what the search engines are seeing by using this free tool: http://www.seomoz.org/term-extractor. It will analyze the content of your page and extracts the terms that the search engines are seeing. Hint: it doesn't hurt to run this tool over your competitors' sites as well, to see what they are using.

High quality content, tuned to your keywords, is the single most important factor for improving your organic search results.

Using Paid Search

You can also use paid search (i.e adwords aka PPC) to help your organic rankings by raising your quality score. For example, you can run a low budget adwords campaign that uses your keywords. Your initial quality score will be around 4-5 if you have decent content. If you follow the adwords help on improving the quality score to at least a 7 you will find your organic ranking will improve as well.

Linking

Another critical factor in your organic rankings is how many sites are linking to you. Search engines consider links as votes, but not all links are equal. An "authoritative" site, i.e. one that has a lot of links itself, will have a higher value.

Domain Age

The last thing I will mention is that Search Engines factor in the age of domains, which means you have to be around for a while, and patient. While we are on the topic, you should know that the GoogleBot loves to see fresh content as well, which is why blogs are so effective.

Bottom Line

My advice is to first and foremost create compelling and valuable articles on your blog, and have remarkable products. Then, make it easy for users to link to your site by using services such as addthis and Facebook Like on your pages.

Posted by Gavin Terrill on June 18, 2010.

Blog Article Navigation

Want to beef up your Shopify article page a little? How about offering some basic navigation? I'm going to share a couple of tips on how to allow users to go back to the article listing page, as well as link to the next and previous articles in the blog.

First off, let's look at adding a link back to the blog listing page. Open up article.liquid in the Theme > Template Editor page in Admin, and add the following at the bottom of the page.

<a href="{{ blog.url }}">Back to {{ blog.title | escape }} articles</a>

Easy huh?

Next up, let's add links to the next and previous articles. 

Update: 8 days after publishing this article Shopify announced support for blog.next_article and blog.previous_article. The code below is no longer needed.

To do this we need to loop over the all the articles, using a variable to keep track of what the next and last articles were. Here is the code:

{% assign current_found = false %}
{% assign done = false %}
{% for a in blog.articles %}
	{% if current_found and done == false %}
		{% assign next_article = a %}
		{% assign done = true %}
	{% endif %}
	{% unless done %}
		{% if a.id == article.id %}
			{% assign current_found = true %}
		{% else %}
			{% assign prev_article = a %}
		{% endif %}
	{% endunless %}
{% endfor %}

You will now have access to two variables: next_article and prev_article. To use these add some code like this:

{% if prev_article %}
	<a href="{{ prev_article.url }}">Previous: {{ prev_article.title | escape }}</a>
{% endif %}

{% if next_article %}
	<a href="{{ next_article.url }}">Next: {{ next_article.title | escape }}</a>
{% endif %}

That's it. Two simple things to make browsing articles a little easier for your users.


Posted by Gavin Terrill on June 10, 2010.

Introducing our Help Desk

We have some great news for our Searchify and Vanity Theme customers - we now have a Help Desk to serve you better. The Help Desk will become our main avenue for supporting our premium Shopify themes, applications and other upcoming products. Additionally, we will create forums for users to share tips, ask questions and provide feedback. 

Check it out:


Posted by Gavin Terrill on May 10, 2010.

Tip: Increase Conversions with Large Add to Cart Buttons

A great way to increase conversions is to place a prominent "Add to Cart" button on your product page. A clearly visible button leaves no doubt for your visitors as to what the next step in the process should be. 

Here are some factors to consider on this oh so important button:
  • Place the button in an area that the user is likely to see without having to scroll down or across the page.
  • Make it larger than other design elements on the page so that it draws attention.
  • Think about duplicating the button - one at the top and one at the bottom.
  • Keep the text short. For example, don't say "Add item to the cart", where "Add to cart" will do.
  • Use local terminology. In the UK you typically see "Add to Basket", and I've seen "Add to Shopping Bag" in Australia.
"Add to Cart" button round-ups:

Posted by Gavin Terrill on April 19, 2010.

1 2 3 6 Next »