eCommerce Conversion Rate Booster: Add a Touch of Personalization

March 2nd, 2010 | 2 Comments | Posted in eCommerce

I came across the blog, Better Retail by way of a tweet. After reading the article that brought me in I skimmed over other posts and one caught me eye, Illinois Residents Pay No Sales Tax. The post is a quick summary about a website that personalizes a no sales tax graphic depending on what state you live in. This is a great way to add some personalization to your eCommerce site.

If someone comes into your site and they notice a graphic saying, “Your-State-Here Residents Pay No Sales Tax”, it gives the customer a sense of comfort. This allows you to connect with your visitors on a more personalized level. Adding a feature like this one can really help increase your conversion rates.

I wanted to take the above blog post a step further and show you exactly how you can do this on your site today and get those conversion rates up.

There are several ways to achieve a function of personalization like this. I wanted a way that can be used across multiple languages.  What I have found will work if your site is being run off PHP, ASP.NET, Ruby on Rails, Java and so on. It is just a simple JavaScript script that can get you this functionality.

When I searched around for a way to do this I came across this post, Find web visitor’s location automatically with javascript and Google APIs. The code here got me started in the right direction and was able to come up with code to create the personalization code. A side note to this, I found that the place I got this code from is from Brian Cray’s blog. He is located in Columbus, OH and I am also in Columbus, OH. It’s a small world.

<div id="salestax"></div>
<script type="text/javascript" src="http://www.google.com/jsapi?key=YOUR-KEY-HERE"></script>
<script type="text/javascript">
 
if(google.loader.ClientLocation)
{
  visitor_region = google.loader.ClientLocation.address.region;
 
  document.getElementById('salestax').innerHTML = '<p><img src="./images/' + visitor_region + '.gif" /></p>' + visitor_region;
}
else
{
  document.getElementById('salestax').innerHTML = '<p><img src="./images/notfound.gif" /></p>';
}
</script>

This uses the Google AJAX API script. For you to use this on your site you will need to sign up for a Google API key and place it in the code above where it says “YOUR-KEY-HERE”.

This code will look for an image in the image folder named after the visitors region. The region comes back as the states abbreviation. So for an example the code finds be in Ohio. It returns the visitor_region as OH. It will look for the image OH.gif in the images folder and display that image on the page. What you will need to do is create an image for each of the 50 states and place them in an images folder.

If the Google location script does not return a visitor_region the else statement is there to catch that error and display a default image, notfound.gif. These geo location scripts do not always work properly, so make sure you always have a default image to display if it does not.

TRY IT OUT

There are many other applications that this type of code could be used for besides just a no tax icon. I would love to see how people use this on their sites for personalization. Let me know in the comments if you do.

Start improving your eCommerce stores conversion rate today.

eCommerce Weekly Roundup Volume 1 Issue 9

June 29th, 2009 | No Comments | Posted in eCommerce

[June 20th-June 26th, 2009] volume 1 – issue 9
ecommerce-roundup-header

If you have suggestions, articles, etc. please send them to me via twitter or email me at dustin[at]dustinfisher[dot]com.

Improve Your eCommerce Site Now With These Articles

Your Negative ROI (Risk Of Inaction)? (via googleretial.blogspot.com) – They give some suggestions on how to think about your negative ROI.

Product image 360 in Email (via stylecampaign.com) – If you have ever wanted to product 360 degree images of your products and even put them in an email newsletter this is a great post.

Cross-Selling’s Time Has Come (via ecommercetimes.com) – Every retialer wants to cross-sell. It increases revenue. This gives you some tips on how to make the cross-sell work.

The Shopping Cart: How to Answer the 5 Unanswered Customer Questions (via grokdotcom.com) – Here are 5 areas your site should answer that customers look for before buying.

Christmas Shopping Begins in the Next 4 Weeks… (via grokdotcom.com) – With the economy down, people are going to start shopping and planning earlier than ever. Are you ready?

Interesting eCommerce Articles of the Week

Small Business SEO: Costs, Expectations & Realities (via smallbusinesssem.com) – Does your eCommerce shop need some seo help? This talks to you about what to expect to pay for an seo.

5 Ways Negative Reviews are Good for Business (via smallbusinesssem.com) – No one wants a negative review of their business, but it is going to happen. This is a good article on why the negative review is actually good.

Ecommerce Interview: Adding Community for Maximum Return an Interview with Adam Michelson (via optaros.com) – About a 6 minute video on using social media to build a community to help your eCommerce site.

The Importance of Requirements Diligence (via getelastic.com) – Some points to look at when choosing an eCommerce platform. They will also be holding a webinar on this next week. I would check out.

Is the Customer Always Right? (via invesp.com) – Good article about the saying, “Is the customer always right?” No the customer is not always right, as some people use this saying to try and get free items and discounts.