<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>MyWifeQuitHerJob.com &#187; Establishing Your Website</title>
	<atom:link href="http://mywifequitherjob.com/category/establishing-your-website/feed/" rel="self" type="application/rss+xml" />
	<link>http://mywifequitherjob.com</link>
	<description>Starting An Online Business When Your Wife Wants to Stay at Home With the Kids</description>
	<lastBuildDate>Thu, 17 May 2012 13:50:36 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>3 Ecommerce Conversion Problems With My Online Store That I Finally Got Around To Fixing</title>
		<link>http://mywifequitherjob.com/3-ecommerce-conversion-problems-with-my-online-store-that-i-finally-got-around-to-fixing/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=3-ecommerce-conversion-problems-with-my-online-store-that-i-finally-got-around-to-fixing</link>
		<comments>http://mywifequitherjob.com/3-ecommerce-conversion-problems-with-my-online-store-that-i-finally-got-around-to-fixing/#comments</comments>
		<pubDate>Wed, 14 Mar 2012 14:24:58 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[Establishing Your Website]]></category>
		<category><![CDATA[conversion optimization]]></category>
		<category><![CDATA[ecommerce]]></category>
		<category><![CDATA[online store]]></category>

		<guid isPermaLink="false">http://mywifequitherjob.com/?p=14046</guid>
		<description><![CDATA[My online shop has been open for several years now and even after all of this time, I continue to find problems in some of the most obvious places.  Now you would think that since my store has achieved double or triple digit growth every year since launch that my website would be like a well oiled machine.



Photo By Taylor Sloan

But the truth is that I have a huge laundry list of things that need improvement. And the problem is that this list is quite large so I always have to prioritize my time especially since I have a day job and 2 kiddos to play with.

Also, keep in mind that my shop is live 24 hours a day, 7 days a week.  Therefore, every single change that I make no matter how small needs to be tested thoroughly.  Any bugs that I introduce to my shopping ...]]></description>
			<content:encoded><![CDATA[<p>My online shop has been open for several years now and even after all of this time, I continue to find problems in some of the most obvious places.  Now you would think that since my store has achieved double or triple digit growth every year since launch that my website would be like a well oiled machine.<br />
<code></code><br />
<code></code></p>
<div class="wp-caption alignright" style="width:233px"><img src="http://mywifequitherjob.com/blog/wp-content/uploads/2012/03/todolist-223x300.jpg" alt="" title="todolist" width="223" height="300" class="aligncenter size-medium wp-image-14148" />
<p>Photo By Taylor Sloan</p>
</div>
<p>But the truth is that I have a huge laundry list of things that need improvement. And the problem is that this list is quite large so I always have to prioritize my time especially since I have a day job and 2 kiddos to play with.<br />
<code></code><br />
Also, keep in mind that my shop is live 24 hours a day, 7 days a week.  Therefore, every single change that I make no matter how small needs to be tested thoroughly.  Any bugs that I introduce to my shopping cart can have a drastic impact on conversions which is why I&#8217;m extra careful whenever I make any design changes.<br />
<code></code><br />
So why is the title of this post about problems that &#8220;I finally got around to fixing&#8221;?  As you know, I&#8217;ve been working on and testing my mobile site for quite some time now.  And since I was already &#8220;under the hood&#8221; of my website, I finally decided to fix some really annoying issues with the store.<br />
<code></code><br />
Honestly, some of these problems have either had a negative effect on conversions or have annoyed me for quite some time now and should have been fixed a long time ago.  Please feel free to ridicule me in the comments sections if you must:).</p>
<h3>The Dreaded Double Submission Problem</h3>
<p>The first problem that I fixed is actually fairly common. Sometimes it can take quite a long time for a website to send a customer&#8217;s information to the credit card processor and receive a response whenever a customer tries to place an order.  And during the 2-10 seconds that it takes to completely process an order, sometimes a customer gets impatient and hits the &#8220;submit&#8221; button again.<br />
<code></code><br />
Now I don&#8217;t know why most shopping carts have this problem, but whenever a customer hits the submit button on my website more than once, a new and identical order is placed online.  What this means is that a customer&#8217;s order can come through multiple times and their credit card can be charged multiple times.  Needless to say, this is really bad.<br />
<code></code><br />
We have lived with this issue for a quite a long time now simply because it doesn&#8217;t happen very often.  Every month or so, we get maybe one or two double submits so I never made this issue a priority to fix.  However, this past February was especially bad.  In fact, we had one customer get so impatient with our website that they hit the &#8220;submit&#8221; button 6 times which resulted in 5 duplicate orders.<br />
<code></code><br />
And when this customer saw 6 duplicate credit card charges on her statement, she was furious and sent us a nasty email.  Granted, we always refund duplicate orders immediately after they are placed but sometimes it takes one full pay period for the refund to show up.  In any case, this lady got so pissed off and thought that we were trying to cheat her that she cancelled her order and filed a complaint with her credit card company.  After this incident, I knew I had to fix this issue.<br />
<code></code><br />
Turns out that the fix was rather easy.  Here are the lines of code I added to my website to prevent the dreaded double submissions problem.  (Note: This fix requires JQuery)<br />
<code></code><br />
<em>&lt;script type=&#8221;text/javascript&#8221;&gt;<br />
$(document).ready(function(){<br />
    $(&#8220;form&#8221;).submit(function(){<br />
      $(&#8216;input[type=submit]&#8216;).attr(&#8220;disabled&#8221;, &#8220;disabled&#8221;);<br />
      $(&#8216;input[type=image]&#8216;).attr(&#8220;disabled&#8221;, &#8220;disabled&#8221;);<br />
      });<br />
    });<br />
&lt;/script&gt;</em><br />
<code></code><br />
What this code essentially does is it disables the submit button after it is clicked.  Pretty simple eh?  Should have fixed this long ago.</p>
<h3>Confusing Login Screen</h3>
<p>The second problem I fixed recently had to do with the first screen of my checkout process where a customer has to choose whether to create an account or checkout without an account.  Here is a picture of my &#8220;login&#8221; page before my changes.<br />
<code></code><br />
<img src="http://mywifequitherjob.com/blog/wp-content/uploads/2012/03/BBLBefore.jpg" alt="" title="BBLBefore" width="500" height="505" class="aligncenter size-full wp-image-14136" /><br />
<code></code><br />
The problem was that some customers arrived at this screen and assumed that they needed a special login or account in order to complete their purchase.  Now even though we clearly provide the option to checkout without an account, it&#8217;s not always readily obvious to people who don&#8217;t read the text carefully.<br />
<code></code><br />
What usually happens at this point is that the customer either calls and places the order over the phone or abandons their shopping cart altogether.   Now to my credit, I wasn&#8217;t really aware that this was happening until recently when we started receiving an unusual flurry of calls asking us how to place an order.<br />
<code></code><br />
If you haven&#8217;t figured it out already, the problem with our login page is that the checkout buttons don&#8217;t stand out enough in the upper block of text.  Since we lump the regular checkout button in the same paragraph as the express checkout button, it ends up looking like a block of text.  So a customer who doesn&#8217;t read very carefully can be led to believe that they need to sign-in in order to make a purchase.<br />
<code></code><br />
To solve this problem, I separated the 2 options and made the checkout buttons more obvious to the customer.  I also rewrote the verbiage to make the &#8220;registering for an account&#8221; part of checkout less obvious.<br />
<code></code><br />
<img src="http://mywifequitherjob.com/blog/wp-content/uploads/2012/03/BBLNew.jpg" alt="" title="BBLNew" width="500" height="513" class="aligncenter size-full wp-image-14140" /></p>
<h3>Shopping Cart Abandonment On The Last Step</h3>
<p>The final problem that I fixed had to do with customers abandoning their shopping cart on the final step of checkout after they&#8217;ve already entered in their credit card information.   Under normal circumstances, this should be extremely rare.  Once a customer enters in their personal information and their credit card numbers, it&#8217;s almost always a guaranteed conversion.  That is&#8230;unless you screw up the confirmation page.  Let&#8217;s see if you can see the problem in the screenshot below.<br />
<code></code><br />
<img src="http://mywifequitherjob.com/blog/wp-content/uploads/2012/03/BBLConfirm.jpg" alt="" title="BBLConfirm" width="500" height="503" class="aligncenter size-full wp-image-14142" /><br />
<code></code><br />
If you look at the page really quickly, you might think that you have already finished placing your order.   In fact, we&#8217;ve had several customers call us to complain that they never received their order because they never actually completed the checkout process!  One of the main reasons that customers think they are done with their purchase is because the &#8220;Confirm Order&#8221; button is so tiny and it&#8217;s displayed in the lower right corner in a color that blends in with the rest of the site.<br />
<code></code><br />
By replacing the &#8220;confirm&#8221; button with a much larger button with a different colored gradient, we&#8217;ve since reduced the abandonment rate on this page.</p>
<h3>The Changes Never End</h3>
<p>These 3 changes have been live for a little over a month now and everything seems to be working smoothly.  Our shopping cart abandonment rate on the confirmation page went down from about 6% down to 3%.  Our abandonment rate on the &#8220;login&#8221; page has also seen similar reductions.  And not having to deal with duplicate orders has been a major relief.<br />
<code></code><br />
It just goes to show that conversion optimization never ends.  The moral of the story is that no matter how well your online shop is designed, you will always find some customer who will get confused by your checkout process.  If you keep things simple, you&#8217;ll have a better chance of converting the sale.<br />
<code></code><br />
<strong>Final Note:</strong> The proper way to test your changes is to perform A/B testing on your pages.  The reason I didn&#8217;t use A/B testing in the above cases was because I already knew that my pages had problems that needed to be fixed.  In the future, I may test different versions of the login screen to see what works best. </p>
]]></content:encoded>
			<wfw:commentRss>http://mywifequitherjob.com/3-ecommerce-conversion-problems-with-my-online-store-that-i-finally-got-around-to-fixing/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>How To Get A Great Looking Ecommerce Website Without Hiring A Designer</title>
		<link>http://mywifequitherjob.com/get-a-great-looking-ecommerce-website-without-hiring-a-designer/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=get-a-great-looking-ecommerce-website-without-hiring-a-designer</link>
		<comments>http://mywifequitherjob.com/get-a-great-looking-ecommerce-website-without-hiring-a-designer/#comments</comments>
		<pubDate>Wed, 29 Feb 2012 15:27:57 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[Establishing Your Website]]></category>
		<category><![CDATA[How to Build an Online Store]]></category>
		<category><![CDATA[ecommerce]]></category>
		<category><![CDATA[online store]]></category>
		<category><![CDATA[open cart]]></category>
		<category><![CDATA[open source shopping cart]]></category>
		<category><![CDATA[template]]></category>
		<category><![CDATA[theme]]></category>

		<guid isPermaLink="false">http://mywifequitherjob.com/?p=14049</guid>
		<description><![CDATA[Welcome to part 3 of a 3 part video series on how to create an online store and own your own website without any technical experience required.

Today, I&#8217;m going to teach you how to get a great looking website without having to hire a designer and without having to spend a lot of money.  In an informal survey that I conducted among my readers a while back, the second biggest mental hurdle to starting an ecommerce website is the design aspect of the store.



Photo By Auswandem Malaysia

Let&#8217;s face it.  Most of us aren&#8217;t web designers.  Most of us aren&#8217;t very artistic and most of us are not well versed in the art of writing html or php.

The good news is that you don&#8217;t really have to be an expert in any of those things in order to put up a good looking online store.
The Beauty Of Open ...]]></description>
			<content:encoded><![CDATA[<p>Welcome to part 3 of a 3 part video series on how to create an online store and own your own website without any technical experience required.<br />
<code></code><br />
Today, I&#8217;m going to teach you how to get a great looking website without having to hire a designer and without having to spend a lot of money.  In an informal survey that I conducted among my readers a while back, the second biggest mental hurdle to starting an ecommerce website is the design aspect of the store.<br />
<code></code><br />
<code></code></p>
<div class="alignright wp-caption" style="width:310px"><img src="http://mywifequitherjob.com/blog/wp-content/uploads/2012/02/cart1-300x225.jpg" alt="" title="cart" width="300" height="225" class="alignright size-medium wp-image-14063" />
<p>Photo By Auswandem Malaysia</p>
</div>
<p>Let&#8217;s face it.  Most of us aren&#8217;t web designers.  Most of us aren&#8217;t very artistic and most of us are not well versed in the art of writing html or php.<br />
<code></code><br />
The good news is that you don&#8217;t really have to be an expert in any of those things in order to put up a good looking online store.</p>
<h3>The Beauty Of Open Source</h3>
<p>One of the best aspects of using an open source shopping cart such as Open Cart is that it is a standard platform.  As a result, many 3rd party developers actively create themes, templates and plugins for Open Cart and many of them are free or can be purchased at a very low cost.<br />
<code></code><br />
For example, many of the templates for Open Cart are free or can be had for as little as $25.  A template is a theme for your shopping cart that completely transforms the look and feel of your online store.  While your products and your database remain the same, the aesthetics for your shop can be instantly changed to suit your tastes.<br />
<code></code><br />
In addition, you can purchase a wide variety of 3rd party plugins that add additional functionality to your online store at little or no cost as well.</p>
<h3>Installing A Shopping Cart Template</h3>
<p>Today&#8217;s video will give you a brief overview about shopping cart templates and themes and provide you with a complete walkthrough on how to install your theme once you make a purchase.<br />
<code></code><br />
Once again, there is no technical experience required to follow along.  Enjoy the video!<br />
<code></code><br />
<iframe width="500" height="375" src="http://www.youtube.com/embed/XiTr5rs0vZw" frameborder="0" allowfullscreen></iframe></p>
<h3>Want To Learn More?</h3>
<p><a href="http://profitableonlinestore.com"><img src="http://mywifequitherjob.com/blog/wp-content/uploads/2012/02/300x250Banner.jpg" alt="Create  A Profitable Online Store" title="300x250Banner" width="300" height="250" class="alignright size-full wp-image-14026" /></a>Have you enjoyed my videos so far?  If you are itching to start your own online store, you definitely need to check out my full blown course on <a href="http://profitableonlinestore.com">how to create a profitable online store</a>.<br />
<code></code><br />
I will teach you everything you need to know in order to run a successful online shop.<br />
<code></code></p>
]]></content:encoded>
			<wfw:commentRss>http://mywifequitherjob.com/get-a-great-looking-ecommerce-website-without-hiring-a-designer/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>How To Accept Credit Cards And Secure Your Online Store With SSL Without Any Technical Experience</title>
		<link>http://mywifequitherjob.com/how-to-accept-credit-cards/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-accept-credit-cards</link>
		<comments>http://mywifequitherjob.com/how-to-accept-credit-cards/#comments</comments>
		<pubDate>Wed, 22 Feb 2012 15:21:15 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[Establishing Your Website]]></category>
		<category><![CDATA[How to Build an Online Store]]></category>
		<category><![CDATA[accepting credit cards]]></category>
		<category><![CDATA[credit cards]]></category>
		<category><![CDATA[ecommerce]]></category>
		<category><![CDATA[gateway]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[merchant account]]></category>
		<category><![CDATA[online store]]></category>
		<category><![CDATA[ssl]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://mywifequitherjob.com/?p=14010</guid>
		<description><![CDATA[This post is part 2 of a 3 part series on how to create your own online store and own your own website without any technical experience required.

The main point of these articles and videos is to convince you that you don&#8217;t need to rely on the Ebays, the Etsys or the Amazons of the world to sell goods online.   There&#8217;s no reason to pay hefty selling fees when you can own your own online shop and keep all of the profits for yourself.

In part 1, I showed you how to create your own fully featured online store website with just a few clicks of the mouse.  Today, I&#8217;m going to show you how to make your website transactions secure with SSL and how to install credit card processing on your online shop.
No Technical Experience Necessary
In an informal poll that I conducted with my newsletter readers a ...]]></description>
			<content:encoded><![CDATA[<p>This post is part 2 of a 3 part series on how to create your own online store and own your own website <strong>without any technical experience required</strong>.<br />
<code></code><br />
The main point of these articles and videos is to convince you that you don&#8217;t need to rely on the Ebays, the Etsys or the Amazons of the world to sell goods online.   There&#8217;s no reason to pay hefty selling fees when you can own your own online shop and keep all of the profits for yourself.<br />
<code></code><br />
<img src="http://mywifequitherjob.com/blog/wp-content/uploads/2012/02/padlock-300x199.jpg" alt="" title="padlock" width="300" height="199" class="alignright size-medium wp-image-14018" />In part 1, I showed you how to <a href="http://mywifequitherjob.com/how-to-start-an-online-store-own-your-website-and-sell-online-without-any-technical-knowledge-required/">create your own fully featured online store website</a> with just a few clicks of the mouse.  Today, I&#8217;m going to show you how to make your website transactions secure with SSL and how to install credit card processing on your online shop.</p>
<h3>No Technical Experience Necessary</h3>
<p>In an informal poll that I conducted with my newsletter readers a while back, most entrepreneurs want to start an online store but don&#8217;t want to be bogged down with technical details. They just want to start selling right away which is precisely why sites like Ebay and Etsy continue to prosper.<br />
<code></code><br />
But what most people don&#8217;t know is that there are many open source options out there that are completely free.  And the best part is that all of these carts support SSL and a plethora of credit card gateways out of the box.<br />
<code></code><br />
What this means is that everything you need to run a fully functional shop that accepts credit cards and other forms of payment has already been created for you.   You just need to know how to set things up and I&#8217;m going to show you exactly how to do it.</p>
<h3>Video Tutorial</h3>
<p>Today&#8217;s video is double the length of the last one at 28 minutes.  However, I promise you that it is extremely detailed and shows you every single step that is required to start selling including&#8230;</p>
<ul>
<li>How to get a dedicated IP address for your website</li>
<li>How to setup and purchase an SSL certificate</li>
<li>How to enable SSL with Open Cart</li>
<li>How to setup your merchant account and gateway</li>
<li>How to setup Open Cart to accept credit cards</li>
</ul>
<p>Enjoy the video!<br />
<iframe width="500" height="375" src="http://www.youtube.com/embed/aeE89wn8sgA?hl=en&#038;fs=1" frameborder="0" allowfullscreen></iframe></p>
<h3>Want To Learn More?</h3>
<p><a href="http://profitableonlinestore.com"><img src="http://mywifequitherjob.com/blog/wp-content/uploads/2012/02/300x250Banner.jpg" alt="Create  A Profitable Online Store" title="300x250Banner" width="300" height="250" class="alignright size-full wp-image-14026" /></a>Have you enjoyed my videos so far?  If so, there&#8217;s more where that came from if you sign up for my full blown course on <a href="http://profitableonlinestore.com">how to create a profitable online store</a>.<br />
<code></code><br />
My course offers over 35+ hours of video and includes live office hours where you can ask me questions directly.<br />
<code></code><br />
If you want to learn everything there is to know about ecommerce, be sure to check it out!  </p>
]]></content:encoded>
			<wfw:commentRss>http://mywifequitherjob.com/how-to-accept-credit-cards/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>How To Start An Online Store, Own Your Website And Sell Online Without Any Technical Knowledge Required</title>
		<link>http://mywifequitherjob.com/how-to-start-an-online-store-own-your-website-and-sell-online-without-any-technical-knowledge-required/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-start-an-online-store-own-your-website-and-sell-online-without-any-technical-knowledge-required</link>
		<comments>http://mywifequitherjob.com/how-to-start-an-online-store-own-your-website-and-sell-online-without-any-technical-knowledge-required/#comments</comments>
		<pubDate>Wed, 15 Feb 2012 16:01:55 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[Establishing Your Website]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[How to Build an Online Store]]></category>
		<category><![CDATA[ecommerce]]></category>
		<category><![CDATA[online store]]></category>
		<category><![CDATA[opencart]]></category>
		<category><![CDATA[selling online]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://mywifequitherjob.com/?p=13977</guid>
		<description><![CDATA[Based on the emails that I&#8217;ve received during the past year, there are a lot of MyWifeQuitHerJob.com readers that sell on either Ebay, Etsy or Amazon and have a strong desire to open their own online store.  In fact after conducting a short survey, I created a video tutorial a few months back on how to install an open source shopping cart from scratch for free.



Photo By SheeShoo

However, this video got mixed reviews from my audience because it was too technical.  Several readers tried to follow the instructions but got stuck trying to figure out how to use some of the free tools I recommended.

Another set of readers were turned off by the amount of typing of &#8220;random&#8221; commands into their terminals.

The reason I created that video the way I did was to show you at a fundamental level what was needed behind the scenes to set up ...]]></description>
			<content:encoded><![CDATA[<p>Based on the emails that I&#8217;ve received during the past year, there are a lot of MyWifeQuitHerJob.com readers that sell on either Ebay, Etsy or Amazon and have a strong desire to open their own online store.  In fact after conducting a short survey, I created a video tutorial a few months back on how to install an open source shopping cart from scratch for free.<br />
<code></code><br />
<code></code></p>
<div class="wp-caption alignright" style="width:310px"><img src="http://mywifequitherjob.com/blog/wp-content/uploads/2012/02/cart-300x225.jpg" alt="" title="cart" width="300" height="225" class="alignright size-medium wp-image-13994" />
<p>Photo By SheeShoo</p>
</div>
<p>However, this video got mixed reviews from my audience because it was too technical.  Several readers tried to follow the instructions but got stuck trying to figure out how to use some of the free tools I recommended.<br />
<code></code><br />
Another set of readers were turned off by the amount of typing of &#8220;random&#8221; commands into their terminals.<br />
<code></code><br />
The reason I created that video the way I did was to show you at a fundamental level what was needed behind the scenes to set up an online store.<br />
<code></code><br />
But after some thought, I realized that I went about things all wrong.   Most people aren&#8217;t interested in the technical details behind a website.  People just want to know the fastest and easiest way to set things up and start selling.<br />
<code></code></p>
<h3>Starting An Online Store With No Technical Knowledge</h3>
<p>So today, I&#8217;ve created a video tutorial on how to start your online store WITHOUT any technical knowledge required.  Seriously folks, if you know how to use a mouse and basic knowledge on how to surf the web, you can start your own online store!   And the best part is that you will have full control over your shop.  No one will be able to change the terms and conditions.  No one will be able to charge you a fee for selling online.<br />
<code></code><br />
In addition, this time I&#8217;m going to take things one step further.  In a subsequent video, I&#8217;m also going to show you how to set up SSL to make your online store secure and I&#8217;m also going to show you how to setup credit card processing as well.<br />
<code></code><br />
In a nutshell, I&#8217;m going to teach you everything you need to know on how to set up a free open source shopping cart from scratch and start selling online without any technical experience whatsoever.</p>
<h3>Enjoy The Video!</h3>
<p>If anyone has any questions after watching the video, feel free to send me email.<br />
<code></code><br />
<iframe width="500" height="375" src="http://www.youtube.com/embed/zeLydv8unKM" frameborder="0" allowfullscreen></iframe><br />
<code></code></p>
<h3>Want To Learn More?</h3>
<p><a href="http://profitableonlinestore.com"><img src="http://mywifequitherjob.com/blog/wp-content/uploads/2012/02/300x250Banner.jpg" alt="Create  A Profitable Online Store" title="300x250Banner" width="300" height="250" class="alignright size-full wp-image-14026" /></a>Did you enjoy this video?  If so, there&#8217;s more where that came from if you sign up for my full blown course on <a href="http://profitableonlinestore.com">how to create a profitable online store</a>.<br />
<code></code><br />
My course offers over 35+ hours of video and includes live office hours where you can ask me questions directly.<br />
<code></code><br />
If you want to learn everything there is to know about ecommerce, be sure to check it out!  </p>
]]></content:encoded>
			<wfw:commentRss>http://mywifequitherjob.com/how-to-start-an-online-store-own-your-website-and-sell-online-without-any-technical-knowledge-required/feed/</wfw:commentRss>
		<slash:comments>29</slash:comments>
		</item>
		<item>
		<title>How To Put Your Website Under Maintenance Without Affecting Your Search Rankings Or Losing Money</title>
		<link>http://mywifequitherjob.com/how-to-put-your-website-under-maintenance-without-affecting-your-search-rankings-or-losing-money/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-put-your-website-under-maintenance-without-affecting-your-search-rankings-or-losing-money</link>
		<comments>http://mywifequitherjob.com/how-to-put-your-website-under-maintenance-without-affecting-your-search-rankings-or-losing-money/#comments</comments>
		<pubDate>Wed, 08 Feb 2012 16:01:47 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[Establishing Your Website]]></category>
		<category><![CDATA[How to Build an Online Store]]></category>
		<category><![CDATA[503]]></category>
		<category><![CDATA[ecommerce]]></category>
		<category><![CDATA[maintenance]]></category>
		<category><![CDATA[online store]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[under construction]]></category>

		<guid isPermaLink="false">http://mywifequitherjob.com/?p=13925</guid>
		<description><![CDATA[The other day a student in my Create A Profitable Online Store Class&#8221; asked me a pretty good question.
Right now while I&#8217;m developing my site it doesn&#8217;t really matter but how do I put my store under maintenance after I&#8217;ve launched without affecting my search engine rankings?
The great thing about this question is that it applies not only to ecommerce shop owners but to all webmasters in general.

If you improperly put your website under maintenance, you could potentially destroy your search engine rankings while driving away customers at the same time.

Especially if you plan on bringing down your website for an extended period, it&#8217;s essential that you do things the right way.
Common Mistakes
But before I discuss the proper way to put a website under maintenance and what I do with my online store, I thought that I would talk about some common mistakes that I&#8217;ve seen people make with their ...]]></description>
			<content:encoded><![CDATA[<p>The other day a student in my <a href="http://profitableonlinestore.com">Create A Profitable Online Store Class&#8221;</a> asked me a pretty good question.</p>
<blockquote><p>Right now while I&#8217;m developing my site it doesn&#8217;t really matter but how do I put my store under maintenance after I&#8217;ve launched without affecting my search engine rankings?</p></blockquote>
<p><img src="http://mywifequitherjob.com/blog/wp-content/uploads/2012/02/man_maintenance.jpg" alt="" title="man_maintenance" width="285" height="265" class="alignright size-full wp-image-13944" />The great thing about this question is that it applies not only to ecommerce shop owners but to all webmasters in general.<br />
<code></code><br />
If you improperly put your website under maintenance, you could potentially destroy your search engine rankings while driving away customers at the same time.<br />
<code></code><br />
Especially if you plan on bringing down your website for an extended period, it&#8217;s essential that you do things the right way.</p>
<h3>Common Mistakes</h3>
<p>But before I discuss the proper way to put a website under maintenance and what I do with my online store, I thought that I would talk about some common mistakes that I&#8217;ve seen people make with their sites.<br />
<code></code><br />
Probably the worst and most egregious mistake that I&#8217;ve seen is to simply bring down your entire site and leave a bunch of pages stranded with &#8220;Page Not Found&#8221; errors.  Please do not do this!  Unfortunately, you&#8217;d be surprised by how many times I&#8217;ve seen people edit their website this way.<br />
<code></code><br />
<img src="http://mywifequitherjob.com/blog/wp-content/uploads/2012/02/404-300x286.png" alt="" title="404" width="300" height="286" class="alignleft size-medium wp-image-13951" />Another common mistake I see is webmasters redirecting all pages on their site with a 301 redirect to a pre-made &#8220;under construction&#8221; page&#8230;and this is where the trouble starts.<br />
<code></code><br />
On the surface, it might seem fine to bring down your site this away.  After all if a human visits your site, they will see an attractive &#8220;maintenance&#8221; page and come back at a later date.<br />
<code></code><br />
However in the eyes of the search engines, Google will think that your entire website has been moved and now points to your &#8220;maintenance&#8221; page.   And given enough time, this could have disastrous results on your search engine rankings.<br />
<code></code><br />
The problem is that it&#8217;s fairly easy to fall into this trap.  For example Open Cart, a popular open source shopping cart that I recommend, offers a maintenance mode option which seamlessly redirects all customers to a custom &#8220;under construction&#8221; page.<br />
<code></code><br />
However, the problem is that Open Cart uses &#8220;301 Redirects&#8221; which tells Google that the pages have been moved permanently.  As a result, Open Cart&#8217;s maintenance mode is really only good for the beginning stages of web development when you don&#8217;t have any real customers yet.</p>
<h3>A Better Solution</h3>
<p>So what&#8217;s a better way to do this?  A much better solution involves letting both humans and the search engines know that your website is only temporarily down and this can be accomplished with a special status message called a <strong>&#8220;503 status code&#8221;</strong>.<br />
<code></code><br />
In a nutshell, a 503 code indicates that your website is temporarily unavailable.  In addition to being unavailable, you can also tell the search engines when to come back again when you think your website will hopefully be ready.<br />
<code></code><br />
Here&#8217;s how to issue a 503 status return code for your website.  The first thing you need to do is create a special file called <strong>503.php</strong>.  Then in your 503.php file, you need to insert the following lines of code at the top of your file.<br />
<code></code><br />
<em>Note:  The &#8220;Retry-After&#8221; parameter below indicates to the search engines when you want them to come back again.  The time unit is in seconds so in the example below, we are telling Google to come back after 60 minutes.</em><br />
<code></code></p>
<div class="format_text">
<em><strong>&lt;?php<br />
header(&#8220;HTTP/1.1 503 Service Temporarily Unavailable&#8221;);<br />
header(&#8220;Status: 503 Service Temporarily Unavailable&#8221;);<br />
header(&#8220;Retry-After: 3600&#8243;);<br />
?&gt;<br />
</strong></em>
</div>
<p><code></code><br />
After these lines, you can then use the rest of this file to create a custom &#8220;under maintenance&#8221; page.  Finally, you should edit your .htaccess file to redirect all visitors to your 503.php page by adding the following lines.<br />
<code></code></p>
<div class="format_text">
<strong><em><IfModule mod_rewrite.c><br />
 RewriteEngine on<br />
 RewriteCond %{REMOTE_ADDR} !^111\.111\.111\.111<br />
 RewriteCond %{REQUEST_URI} !/503.php$ [NC]<br />
 RewriteRule .* /503.php [R=302,L]<br />
</IfModule></em></strong>
</div>
<p><code></code><br />
In a nutshell, the above lines in your .htaccess file will redirect all visitors to your 503.php file which will tell both humans and search engines that your site is under maintenance.  Make sure that you put your own IP address where you see the numbers 111.111.111.111 above so that you can still access your site from your own computer.</p>
<h3>The Best Solution</h3>
<p><img src="http://mywifequitherjob.com/blog/wp-content/uploads/2012/02/twins-202x300.jpg" alt="" title="twins" width="202" height="300" class="alignright size-medium wp-image-13964" />So creating a 503 maintenance page is all fine and good but obviously the best solution to your maintenance problem is to never bring down your site at all which is what I do with my online store.  Instead of taking down my site whenever I need to work on it, I have 2 identical versions of my website installed on my server.  The second copy of my site is called a staging site.<br />
<code></code><br />
If I need to make changes to my online store, I can leave my existing website live while I work on an identical copy in the background.  Then, once I&#8217;m done making and testing my new changes, I can immediately copy them over to the live site.  This way, I get a chance to thoroughly test and update my changes without worrying about losing sales.<br />
<code></code><br />
There are two ways to create a staging site and it doesn&#8217;t matter which way you choose.  One option is to create a completely separate subdomain for your site and create an identical installation.  For example, you could use the URL staging.yoursite.com for your staging site.<br />
<code></code><br />
Alternatively, you can simply create a brand new subdirectory under your public_html directory and perform an identical installation there.  Either way, you&#8217;ll end up with 2 versions of your live site to work with so you don&#8217;t miss out on any revenue.<br />
<code></code><br />
So the next time you feel like you need to bring down your website for maintenance, you might want to consider implementing a staging site for your online store.  After all, if your store is not open, then you aren&#8217;t making money.  </p>
]]></content:encoded>
			<wfw:commentRss>http://mywifequitherjob.com/how-to-put-your-website-under-maintenance-without-affecting-your-search-rankings-or-losing-money/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>Why My Online Store Needs A Mobile Website And How To Tell If You Need One Too</title>
		<link>http://mywifequitherjob.com/why-my-online-store-needs-a-mobile-website-and-how-to-tell-if-you-need-one-too/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=why-my-online-store-needs-a-mobile-website-and-how-to-tell-if-you-need-one-too</link>
		<comments>http://mywifequitherjob.com/why-my-online-store-needs-a-mobile-website-and-how-to-tell-if-you-need-one-too/#comments</comments>
		<pubDate>Wed, 07 Dec 2011 15:51:22 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[Establishing Your Website]]></category>
		<category><![CDATA[mobile commerce]]></category>
		<category><![CDATA[mobile ecommerce]]></category>
		<category><![CDATA[online store]]></category>

		<guid isPermaLink="false">http://mywifequitherjob.com/?p=13566</guid>
		<description><![CDATA[This past week I read an article on TechCrunch about how retailers weren&#8217;t ready for iPad shoppers this past holiday weekend.  Now I don&#8217;t know much about the author or her ecommerce background, but I strongly disagreed with the post.

The main premise was that most of the top online retailers missed out on a lot of sales because they neglected to have an iPad app or an iPad optimized site ready for holiday shopping.



Photo By Old Shoe Lady

First of all when I go shopping on my iPad, the last thing I want to do is to have to download an app in order to shop efficiently.  The iPad screen is large enough such that browsing full blown sites is comfortable for most online stores.

The only thing that would be a detriment to online shopping on an iPad would be if the site used flash, which most sites already ...]]></description>
			<content:encoded><![CDATA[<p>This past week I read an article on TechCrunch about how <a href="http://techcrunch.com/2011/12/05/retailers-arent-ready-for-ipad-shopping-trend/">retailers weren&#8217;t ready for iPad shoppers this past holiday weekend</a>.  Now I don&#8217;t know much about the author or her ecommerce background, but I strongly disagreed with the post.<br />
<code></code><br />
The main premise was that most of the top online retailers missed out on a lot of sales because they neglected to have an iPad app or an iPad optimized site ready for holiday shopping.<br />
<code></code><br />
<code></code></p>
<div class="wp-caption alignright" style="width:310px"><img src="http://mywifequitherjob.com/blog/wp-content/uploads/2011/12/smartphone-300x225.jpg" alt="" title="smartphone" width="300" height="225" class="alignright size-medium wp-image-13646" />
<p>Photo By Old Shoe Lady</p>
</div>
<p>First of all when I go shopping on my iPad, the last thing I want to do is to have to download an app in order to shop efficiently.  The iPad screen is large enough such that browsing full blown sites is comfortable for most online stores.<br />
<code></code><br />
The only thing that would be a detriment to online shopping on an iPad would be if the site used flash, which most sites already do not.<br />
<code></code><br />
In any case, reading this article made me wonder how many customers shopped with iPads and other mobile devices at my online store during the Black Friday weekend and how many customers actually made a purchase.  After all, I hadn&#8217;t done this analysis for several months now.   Was I wrong in disagreeing with this post?  Do I now need a mobile version of my store?  What metrics should I use to make my decision?</p>
<h3>Last Year&#8217;s Results</h3>
<p>Last year, only about 6% of our online visitors arrived through a mobile device using data gathered starting from Black Friday through the first week of December.  Note that this period of time reflects our busiest shopping days of the year.  Here was the breakdown among devices.<br />
<code></code><br />
<img src="http://mywifequitherjob.com/blog/wp-content/uploads/2011/12/mobile2010.gif" alt="" title="mobile2010" width="550" height="225" class="alignnone size-full wp-image-13568" /><br />
<code></code><br />
It&#8217;s important to note that during this period last year, we had <strong>0 customers</strong> actually make a purchase from our store.  If you recall, last year I was considering whether to create a mobile version of my website but was still hesitant to pull the trigger.</p>
<h3>This Year&#8217;s Results During The Same Time Period</h3>
<p>This year, the number and percentage of mobile visits increased dramatically by <strong>over 3X</strong>.  In fact, this was the first year ever where the percentage of mobile visits hit double figures at <strong>over 14%</strong>.  Here was the breakdown among devices.<br />
<code></code><br />
<img src="http://mywifequitherjob.com/blog/wp-content/uploads/2011/12/mobile2011.gif" alt="" title="mobile2011" width="550" height="222" class="alignnone size-full wp-image-13575" /><br />
<code></code><br />
In terms of sales, mobile visitors accounted for about 6.6% of revenues with about 90% of mobile sales coming from iPad users.  Not too shabby.  Clearly, the number of people who shop on their mobile devices has been growing exponentially!</p>
<h3>Time To Pull The Trigger On A Mobile Optimized Site?</h3>
<p>So here&#8217;s my situation.  When I first designed my online store, I had dial-up visitors in mind.  I chose a screen resolution of 800&#215;600 and optimized the site to render the pages in under 10 seconds on a 56K modem!<br />
<code></code><br />
These days, the newest Android phones pack screen sizes that are 1280&#215;720-pixels in resolution with download speeds that are even faster than my cable modem connection at home.  It&#8217;s pretty clear in my mind that mobile devices are getting better and better at browsing full blown websites even on a phone.  Am I losing out on potential customers by not having a cell phone miniaturized website?<br />
<code></code><br />
Personally, I try to avoid most mobile optimized shopping sites when browsing from my phone because they are usually poorly done.  Having another site design would mean that I would have to do double testing on both full and mobile browsers with my shop.</p>
<h3>Real Data From My Online Store</h3>
<p>Whenever I have to make a design decision, I always look to my stats so here are some web browsing statistics for mobile users compared to the desktop/laptop users on my website.<br />
<code></code><br />
<img src="http://mywifequitherjob.com/blog/wp-content/uploads/2011/12/MobileVsDesktop.gif" alt="" title="MobileVsDesktop" width="480" height="602" class="alignnone size-full wp-image-13596" /><br />
<code></code><br />
In addition to analyzing the data above and drawing some conclusions, I also did some research about the inherent differences between mobile versus desktop traffic.  Here&#8217;s what I found.</p>
<ul>
<li><strong>Mobile users are more affected by proximity.</strong>  For example, if someone types in &#8220;bike shop&#8221; on their desktop computer, they are probably looking to shop online.  But if they type &#8220;bike shop&#8221; into their phone, they might be looking to shop at the bike store closest to them.   What does this mean?  Mobile searchers might be expecting to find a place within walking distance or within a short drive.  If these visitors land on my shop which is only offered online, they might leave immediately.</li>
<li><strong>The search listings are usually abbreviated on a mobile device.</strong>  The fact that the title tags and meta descriptions are often abridged on a mobile device means that a user has less information when they actually click on a link.  As a result, bounce rates will tend to be higher in general</li>
<li><strong>People don&#8217;t like scrolling to the right.</strong>  If your site is too large to fit horizontally on the screen, chances are that your customer will leave.</li>
<li><strong>People who shop on their mobile devices have more money.</strong>  I didn&#8217;t know this before but it turns out that 42% of mobile internet users earn over $80,000 a year, and tend to spend more on the run.</li>
<li><strong>Mobile users are more impatient than desktop users</strong>  60% of mobile users only wait 3 seconds or less for a page to load before leaving.  74% of mobile users will only wait 5 seconds.  That&#8217;s not very long.</li>
</ul>
<h3>Analyzing The Data</h3>
<p>Ok, so back to the million dollar question.  Do I need to design a mobile enabled version of my store?   If you look at the metrics above, the statistics that compare desktop users vs mobile users is pretty frightening.  All across the board, the bounce rate is mostly higher, the average time on site is lower and the pages per visit is lower as well.<br />
<code></code><br />
But if you take a closer look at the data, I chose to break things down by traffic type because I wanted to specifically separate out cost per click traffic.  Why?  It&#8217;s because my CPC traffic is my most predictable and consistent form of traffic.    If I want to do an apples to apples comparison of my data, then the CPC data is the way to go.  After all, every keyword that a visitor uses to land on my site from a PPC ad is extremely targeted and brings them to a very focused landing page.<br />
<code></code><br />
So if I look at CPC data alone, it looks like my bounce rate isn&#8217;t really an issue.  For this limited data set, the bounce rate for mobile users was actually better than desktop/laptop users.  However, what worries me is that both the time on site and the pages per visit metrics were drastically lower.<br />
<code></code><br />
Given the differences between mobile and desktop traffic, I&#8217;m not quite sure that I can rationalize a 27.76% drop in pages per visit on a mobile device.  In addition, a statistic missing from the table above is that my mobile conversion rates are almost 50% lower than my desktop/laptop conversion rates.   Naturally I would expect mobile conversion rates to be lower but definitely not as bad as 50%!<br />
<code></code><br />
What this tells me is that I need to take mobile a little more seriously.  As of today, none of my competitors for my main targeted keyword phrases in the top 10 of search have a mobile enabled version of their site.  If I start now, I can get a jump on the competition.  After all, mobile traffic seems to be growing exponentially with no end in sight.<br />
<code></code><br />
The big question in my mind is whether the browsing experience on mobile will improve to the point where it will be equivalent to a desktop computer.  Don&#8217;t get me wrong.  I&#8217;m not worried about iPad or tablet traffic.  I&#8217;m more concerned about people who shop using their itty bitty phone screens.<br />
<code></code><br />
At this point, it would be a mistake to sit back and hope.  I&#8217;m going to start experimenting with a mobile site to see if it makes a difference with my numbers.  What do you think?  Do any of you have a mobile enabled version of your online store?  Are your numbers better than mine?  Please go to my online store at <a href="http://bumblebeelinens.com">Bumblebee Linens</a> on your cell phone and let me know what you think.</p>
]]></content:encoded>
			<wfw:commentRss>http://mywifequitherjob.com/why-my-online-store-needs-a-mobile-website-and-how-to-tell-if-you-need-one-too/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>Paypal Website Payments Pro Vs Authorize.net &#8211; A Comparison Of Two Credit Card Processing Solutions</title>
		<link>http://mywifequitherjob.com/paypal-website-payments-pro-vs-authorize-net-a-comparison-of-two-credit-card-processing-solutions/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=paypal-website-payments-pro-vs-authorize-net-a-comparison-of-two-credit-card-processing-solutions</link>
		<comments>http://mywifequitherjob.com/paypal-website-payments-pro-vs-authorize-net-a-comparison-of-two-credit-card-processing-solutions/#comments</comments>
		<pubDate>Wed, 26 Oct 2011 14:57:58 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[Establishing Your Website]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[How to Build an Online Store]]></category>
		<category><![CDATA[authorize.net]]></category>
		<category><![CDATA[merchant plus]]></category>
		<category><![CDATA[paypal website payments pro]]></category>

		<guid isPermaLink="false">http://mywifequitherjob.com/?p=13259</guid>
		<description><![CDATA[As part of my free mini course on how to start an online store, I recommend 2 different credit processing services, Paypal Website Payments Pro and Merchant Plus which is an Authorize.net provider.

But the problem with recommending more than one option is that you still have to make a choice.  And making the right decision largely depends on the nature of your business and the volume of payments that your shop processes.

The reason I decided to recommend more than one option is because both services have their pros and cons which I&#8217;m going to talk about in this article today.  I&#8217;ve used both credit card processing solutions before so I&#8217;ll give you my breakdown and let you make the call.
Which One Is Cheaper?
The first and foremost criteria that most people use to select a credit card processor is price.  But when it comes to credit card processing, ...]]></description>
			<content:encoded><![CDATA[<p>As part of my <a href="http://forms.aweber.com/form/10/1273774510.htm">free mini course on how to start an online store</a>, I recommend 2 different credit processing services, <a href="http://mywifequitherjob.com/go/paypal.php">Paypal Website Payments Pro</a> and <a href="http://mywifequitherjob.com/go/authorize.php">Merchant Plus</a> which is an Authorize.net provider.<br />
<code></code><br />
<a href="http://mywifequitherjob.com/go/authorize.php"><img src="http://mywifequitherjob.com/blog/wp-content/uploads/2011/10/authorize_net.gif" alt="" title="authorize_net" width="258" height="115" class="alignright size-full wp-image-13286" /></a>But the problem with recommending more than one option is that you still have to make a choice.  And making the right decision largely depends on the nature of your business and the volume of payments that your shop processes.<br />
<code></code><br />
The reason I decided to recommend more than one option is because both services have their pros and cons which I&#8217;m going to talk about in this article today.  I&#8217;ve used both credit card processing solutions before so I&#8217;ll give you my breakdown and let you make the call.</p>
<h3>Which One Is Cheaper?</h3>
<p><a href="http://mywifequitherjob.com/go/paypal.php"><img src="http://mywifequitherjob.com/blog/wp-content/uploads/2011/10/paypal-web-payments-pro.png" alt="" title="paypal-web-payments-pro" width="263" height="97" class="alignright size-full wp-image-13289" /></a>The first and foremost criteria that most people use to select a credit card processor is price.  But when it comes to credit card processing, the <a href="http://mywifequitherjob.com/how-to-select-a-credit-card-merchant-and-gateway/">different fees are not always straightforward to calculate</a>.<br />
<code></code><br />
For example, some credit card processors charge you a registration fee, a monthly gateway fee, a statement fee as well as a percentage of your sales.    Some merchants allow you to apply your monthly gateway fee towards your discount rate fees.  Some merchants provide a tiered discount rate depending on how much you sell.  There are many different ways to get charged depending on your sales volume and all of the numbers can get confusing depending on the scenario.<br />
<code></code><br />
The reason I like <a href="http://mywifequitherjob.com/go/authorize.php">Merchant Plus</a> is because it is cheap and the fees are very straightforward to understand.  For example, there are no complicated rules on how you get charged. </p>
<ul>
<li>There&#8217;s a monthly fee of $19.95</li>
<li>There&#8217;s a 25 cent transaction fee per charge</li>
<li>The discount rate is 2.15% for Visa and Mastercard</li>
</ul>
<p>After researching many different credit card merchant account and gateways, the rates for Merchant Plus are very reasonable, the service is very dependable and they provide good support as well.  Now let&#8217;s take a look at Paypal Website Payments Pro.<br />
<code></code><br />
The fees for <a href="http://mywifequitherjob.com/go/paypal.php">Paypal Website Payments Pro</a> are fairly straightforward as well but the rates are more expensive and tiered depending on your sales volume.</p>
<ul>
<li>There&#8217;s a $30 monthly fee</li>
<li>For a monthly sales volume of $0.00 USD &#8211; $3,000.00 USD, you get charged 2.9% + $0.30 USD</li>
<li>For a monthly sales volume of $3,000.01 USD &#8211; $10,000.00 USD, you get charged 2.5% + $0.30 USD</li>
<li>For a monthly sales volume >$10,000.01 USD, you get charged 2.2% + $0.30 USD</li>
</ul>
<p><code></code><br />
Overall, <a href="http://mywifequitherjob.com/go/authorize.php">Merchant Plus</a> is always going to be cheaper than <a href="http://mywifequitherjob.com/go/paypal.php">Paypal Website Payments Pro</a>.<br />
<code></code></p>
<h3>Which One Is More Convenient?</h3>
<p>Money is important but it&#8217;s not everything.  When you sign up for Merchant Plus, you are more or less signing up for a vanilla merchant account and gateway.  In other words, you&#8217;ll be able to process credit cards but that&#8217;s about it.  What&#8217;s nice about <a href="http://mywifequitherjob.com/go/paypal.php">Paypal</a> is that they offer additional features that are very convenient.<br />
<code></code><br />
For example, your online store is probably going to accept regular Paypal in addition to credit cards.  Paypal Website Payments Pro allows you to accept both Paypal standard payments and credit cards all through the same account.  This is really nice simply because you&#8217;ll have one less account to deal with.  In other words, that&#8217;s one less account where you&#8217;ll have to transfer money out of and into your business checking every single month.<br />
<code></code><br />
The other really nice thing about Paypal is that they offer an extremely convenient and easy to use one click shipping platform.  Whenever someone makes a purchase from your shop, the address information can be sent directly to Paypal.  Then, using their multi-order shipping interface, you can quickly and easily ship all of your packages and print shipping labels from Paypal&#8217;s website.  The best part is that all of the shipping fees are automatically deducted from your Paypal account.<br />
<code></code><br />
If you run a small online store, that you means you don&#8217;t have to sign up for a 3rd party shipping platform like Stamps.com.  You don&#8217;t have to deal with downloading and uploading customer addresses to a separate shipping service.  You can do everything without leaving Paypal&#8217;s website!</p>
<h3>The Intangibles</h3>
<p>Sounds pretty good right?  But the one caveat with Paypal is that Paypal is not a true bank.  With Authorize.net and your own merchant account and gateway, any money that you receive is automatically yours once it reaches your bank account and no one can easily take it away from you.<br />
<code></code><br />
With Paypal however, they get to call the shots with your money and can place holds on your account whenever they feel like it.  For example, let&#8217;s say that Paypal detects some abnormal charging patterns with your account.  Without any warning, they can freeze your assets and prevent you from accessing your funds.  A full on fraud investigation can last for several months and during this period you will not be able to withdraw your money from your account.<br />
<code></code><br />
While this has never happened to me (knock on wood), there are many websites out there such as www.paypalsucks.com that are filled with stories and complaints from Paypal users who have had their money frozen for long periods of time.  </p>
<h3>Which Should I Choose?</h3>
<p>If you don&#8217;t care about the integrated shipping that Paypal offers and you don&#8217;t mind having yet another bank account, going with <a href="http://mywifequitherjob.com/go/authorize.php">Merchant Plus</a> is a no brainer.  In addition, readers of MyWifeQuitHerJob.com can take another 20% off of the monthly fee by using <strong>coupon code: MYWIFEQUIT</strong> upon signup.<br />
<code></code><br />
However, if you hate maintaining a bunch of different accounts and want a nice, integrated way of shipping your orders, you should consider signing up for <a href="http://mywifequitherjob.com/go/paypal.php">Paypal Website Payments Pro</a>.  While it starts out more expensive, once you reach a monthly sales volume of greater than $10000, the difference in discount rate is not that big of a deal.<br />
<code></code><br />
The other major thing you have to consider is whether you are comfortable with Paypal having full control over your funds.  If you are even remotely worried about having your assets frozen, then avoid Paypal altogether.   Once again, this has never happened to me before but just be aware that it&#8217;s a possibility.  Good luck with your decision!</p>
]]></content:encoded>
			<wfw:commentRss>http://mywifequitherjob.com/paypal-website-payments-pro-vs-authorize-net-a-comparison-of-two-credit-card-processing-solutions/feed/</wfw:commentRss>
		<slash:comments>21</slash:comments>
		</item>
		<item>
		<title>How To Install An Open Source Shopping Cart And Start Your Online Store In Under 5 Minutes</title>
		<link>http://mywifequitherjob.com/how-to-install-an-open-source-shopping-cart/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-install-an-open-source-shopping-cart</link>
		<comments>http://mywifequitherjob.com/how-to-install-an-open-source-shopping-cart/#comments</comments>
		<pubDate>Wed, 17 Aug 2011 14:43:50 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[Establishing Your Website]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[How to Build an Online Store]]></category>
		<category><![CDATA[online business]]></category>
		<category><![CDATA[online store]]></category>
		<category><![CDATA[open cart]]></category>
		<category><![CDATA[open source shopping cart]]></category>
		<category><![CDATA[selling online]]></category>
		<category><![CDATA[shopping cart]]></category>

		<guid isPermaLink="false">http://mywifequitherjob.com/?p=12839</guid>
		<description><![CDATA[Ever since I posted my article on Why Etsy Stores Are At A Disadvantage Compared To Online Stores That Own Their Domain, I&#8217;ve been meaning to show everyone how easy it is to install a free open source shopping cart.

These days, there are many open source shopping carts out there that are completely free and very feature rich.

You simply have to sign up for a web host, download and install the free shopping cart and you are almost ready to go.

So today, I thought that I&#8217;d give a mini tutorial on how to install Open Cart which is one of the open source shopping carts I recommend in my free 6 day mini course on how to create a niche online store.

Open Cart is an incredible shopping cart that is easy to use and has an elegant back end interface with which to manage your orders and products.  Did ...]]></description>
			<content:encoded><![CDATA[<p>Ever since I posted my article on <a href="http://mywifequitherjob.com/etsy-stores/">Why Etsy Stores Are At A Disadvantage Compared To Online Stores That Own Their Domain</a>, I&#8217;ve been meaning to show everyone how easy it is to install a free open source shopping cart.<br />
<code></code><br />
<img src="http://mywifequitherjob.com/blog/wp-content/uploads/2011/08/screenshot_1-300x222.png" alt="" title="screenshot_1" width="300" height="222" class="alignright size-medium wp-image-12880" />These days, there are many open <code></code>source shopping carts out there that are completely free and very feature rich.<br />
<code></code><br />
You simply have to sign up for a <a href="http://mywifequitherjob.com/go/bluehost.php">web host</a>, download and install the free shopping cart and you are almost ready to go.<br />
<code></code><br />
So today, I thought that I&#8217;d give a mini tutorial on how to install <a href="http://opencart.com">Open Cart</a> which is one of the open source shopping carts I recommend in my <a href="http://forms.aweber.com/form/10/1273774510.htm">free 6 day mini course</a> on how to create a niche online store.<br />
<code></code><br />
Open Cart is an incredible shopping cart that is easy to use and has an elegant back end interface with which to manage your orders and products.  Did I also mention that it&#8217;s free?</p>
<h3>What Do I Need To Begin?</h3>
<p>In order to install an open source shopping cart and follow my tutorial, you&#8217;ll need to do the following.</p>
<ul>
<li><strong>Register a domain name</strong> &#8211; You can grab a domain name from <a href="http://mywifequitherjob.com/go/godaddy.php">Go Daddy</a> for a dollar a month.</li>
<li><strong>Sign up for a web host</strong> &#8211;  I personally recommend <a href="http://mywifequitherjob.com/go/bluehost.php">Blue Host</a> because I ran my online store for 2 years there and had a fantastic experience.
<li><strong>Get SSH access</strong> to your server &#8211; You need to contact your web host and ask for this access which usually requires a faxed in a copy of your drivers license</li>
<li><strong>Install <a href="http://winscp.net/eng/index.php">WinSCP</a> or any FTP client</strong> to transfer files to and from your webserver</li>
<li><strong>Install <a href="http://www.chiark.greenend.org.uk/~sgtatham/putty/">PUTTY</a></strong> for SSH terminal access to your server</li>
<li><strong>Have your web browser ready</strong></li>
<li><strong>Download Open Cart</strong> for free from <a href="http://opencart.com">www.opencart.com</a></li>
</ul>
<p><code></code></p>
<h3>Installing Your Open Source Shopping Cart</h3>
<p>Once you&#8217;ve downloaded all of the necessary programs above and have your web host all set up, you are ready to go!<br />
<code></code><br />
<strong>Quick Note:</strong> All of the instructions mentioned in the video below are actually not necessary if you sign up for a hosting account at <a href="http://mywifequitherjob.com/go/bluehost.php">Blue Host</a>.  The reason is because Blue Host offers a program called &#8220;Simple scripts&#8221; which allows you to install many programs at the click of a button.<br />
<code></code><br />
In any case, the tutorial below will teach you how to install a shopping cart from complete scratch which applies to any web hosting account.  Enjoy the video!<br />
<code></code><br />
<iframe width="500" height="406" src="http://www.youtube.com/embed/QeSE-3lGRBU" frameborder="0" allowfullscreen></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://mywifequitherjob.com/how-to-install-an-open-source-shopping-cart/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>Persistent Shopping Carts &#8211; Are You Frustrating Shoppers Because Your Website Is Timing Out?</title>
		<link>http://mywifequitherjob.com/persistent-shopping-carts/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=persistent-shopping-carts</link>
		<comments>http://mywifequitherjob.com/persistent-shopping-carts/#comments</comments>
		<pubDate>Wed, 20 Jul 2011 14:35:20 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[Establishing Your Website]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[How to Build an Online Store]]></category>
		<category><![CDATA[Our Story]]></category>
		<category><![CDATA[ecommerce]]></category>
		<category><![CDATA[online store]]></category>
		<category><![CDATA[persistent shopping cart]]></category>
		<category><![CDATA[shopping cart]]></category>

		<guid isPermaLink="false">http://mywifequitherjob.com/?p=12676</guid>
		<description><![CDATA[Every year, my wife and I hire a professional photographer to take pictures of the kids and the family.  While this is not cheap,  it&#8217;s something we like to do because the kids are growing up so fast and we want to have photos for every stage of their development.

What&#8217;s funny is that hiring a photographer is only a small portion of the overall cost.  Buying all new matching outfits for the kids and my wife is what tears a hole in my pocketbook and gives me heartburn.

For all of you who know me well, I&#8217;m pretty cheap and seeing the clothing costs for these photo shoots makes me want to faint.  In fact, I don&#8217;t even bother checking the credit card bills during this time because I&#8217;m that terrified.

The other day, my wife was shopping online at a kids clothing &#8220;boutique&#8221; and probably spent a ...]]></description>
			<content:encoded><![CDATA[<p>Every year, my wife and I hire a professional photographer to take pictures of the kids and the family.  While this is not cheap,  it&#8217;s something we like to do because the kids are growing up so fast and we want to have photos for every stage of their development.<br />
<code></code><br />
<img src="http://mywifequitherjob.com/blog/wp-content/uploads/2011/07/KarinaKyle143-300x200.jpg" alt="" title="KarinaKyle143" width="300" height="200" class="alignright size-medium wp-image-12707" />What&#8217;s funny is that hiring a photographer is only a small portion of the overall cost.  Buying all new matching outfits for the kids and my wife is what tears a hole in my pocketbook and gives me heartburn.<br />
<code></code><br />
For all of you who know me well, I&#8217;m pretty cheap and seeing the clothing costs for these photo shoots makes me want to faint.  In fact, I don&#8217;t even bother checking the credit card bills during this time because I&#8217;m that terrified.<br />
<code></code><br />
The other day, my wife was shopping online at a kids clothing &#8220;boutique&#8221; and probably spent a good hour or two researching and putting close to 20 items in her shopping cart.  (BTW, the word &#8220;boutique&#8221; sends shivers up my spine because more often that not it&#8217;s a synonym for &#8220;expensive&#8221;).  But anyways, while she was shopping online I was giving my son a bath when I had a big emergency.<br />
<code></code></p>
<blockquote><p>Help!! I need help!!  Kyle pooped in the tub again!!  Come quick!!!</p></blockquote>
<p><img src="http://mywifequitherjob.com/blog/wp-content/uploads/2011/07/KarinaKyle112-300x200.jpg" alt="" title="KarinaKyle112" width="300" height="200" class="alignleft size-medium wp-image-12709" />Naturally, my wife stopped her shopping spree and helped me clean things up.  Yuck!!  By the time she got back to her computer a good 45 minutes had elapsed.<br />
<code></code><br />
Much to her dismay, when she got back to the computer to resume shopping, her shopping cart was empty!!!  All of that hard work and she had lost it all because the online store she was shopping at had timed out and emptied out her cart.  I will now attempt to recreate our conversation afterwards.<br />
<code></code><br />
<strong>Wife:</strong> S#$%!  F#$&#038;!  What the hell! I lost everything !  I had so many cute outfits in my cart and it took me forever to find all that stuff.<br />
<code></code><br />
<strong>Me</strong>:  Yeah that sucks&#8230;.How much was in your shopping cart?<br />
<code></code><br />
<strong>Wife</strong>:  I don&#8217;t know, 700 maybe?!?  I hate this store.  Never shopping here again<br />
<code></code><br />
<strong>Me</strong>:  WHAT!?!?!?  700 dollars??  My entire wardrobe doesn&#8217;t cost that much!!!!  What the hell!!! Do you think we are made of money?!?!<br />
<code></code><br />
<strong>Wife</strong>: Well don&#8217;t worry about it.  I&#8217;m not buying anything from this store anymore.  It&#8217;ll take forever to find the stuff again<br />
<code></code><br />
<strong>Me:</strong>  (Feeling a sigh of relief)  Oh&#8230;.darn&#8230;..I know how much you liked that stuff (feigning concern).  I feel horrible&#8230;absolutely terrible&#8230;<br />
<code></code><br />
<strong>Wife</strong>:  Shut up.  Just for that, I&#8217;m spending more at the next shop</p>
<h3>Persistent Shopping Carts</h3>
<p>The reality is that many shopping carts behave this way.  If you close your browser session or if you wait too long, many online stores will empty the contents of the cart.  As a result, if a customer returns after a long hiatus of shopping, they will lose what they&#8217;ve added.<br />
<code></code><br />
In many cases, this can cost you a sale because not everyone shops and makes a purchase in a single sitting.  Just as an experiment, I asked a bunch of my friends whether they shop this way.  And surprisingly, many of them use an online store like a wishlist.  They put what they want in their cart, think about it and then return later.  And more often than not, they shut down their browser and let things sit a bit before making a purchase.<br />
<code></code><br />
In fact, looking at our online store statistics, a good 25 percent of customers visit our store more than once before making a purchase.  The best way to deal with these customers is to make sure that whatever they put in their shopping cart stays in their shopping cart until they return and are ready to make a purchase.  This is what is called a persistent shopping cart.</p>
<h3>Implementing A Persistent Shopping Cart</h3>
<p>This feature has been on my list for a very long time but I&#8217;ve been dragging my feet because strangely enough, there&#8217;s no plugin that does this for my shopping cart.  Now this feature is very important for our online store for one main reason, personalization.  When people shop at our store, then often put up to 8-10 items in their carts at a time and many of these products involve personalization with a special message.<br />
<code></code><br />
What also ends up happening is that customers take a long time to shop because they want to think about what they want to write and sometimes they have to confer with their significant other before deciding on a message.  Can you imagine how frustrating it would be to lose everything you typed in just because you took an extended break?<br />
<code></code><br />
So it was a no brainer, I had to spin my own solution.  Here are 3 possible solutions that I came up with.  I apologize in advance if this is next section is a bit more technical than usual.<br />
<code></code></p>
<h3>Extend The Session Timeout Period</h3>
<p>By default, the session length for my server is about 15 minutes long.  What this means is that my server will hold the contents of a customer&#8217;s cart in system memory for 15 minutes of idle time before emptying everything out.  So, a logical solution to this problem would be to simply extend this timeout period.<br />
<code></code><br />
The problem with this solution is that it greatly increases the memory requirements for your online store.  By increasing the timeout period for your shop, you essentially have to hold a customer&#8217;s shopping cart information in main memory for much longer periods of time which effectively increases the amount of main memory you need to run your website.  This solution is clearly not scalable because main memory is a precious resource.<br />
<code></code><br />
Not only that, but it also doesn&#8217;t solve the problem when a customer shuts down their browser or waits for 2 weeks before returning.  Do you really want to keep their shopping cart lying around using up precious compute resources for 2 weeks?  Probably not&#8230;</p>
<h3>Store The Cart Contents In A Cookie</h3>
<p>Another solution is to use cookies to store the contents of their cart on their computer.  Cookies are little files that websites put on the client&#8217;s computer in order to store certain pieces of information so a website can recognize a customer when they return.  By placing a cookie with the shopping cart contents on the client computer, you can effectively store their shopping cart for as long as you like!<br />
<code></code><br />
The problem with this solution is that the cookie size is limited to 4K on most browsers.  Therefore, if a customer&#8217;s shopping cart is large and exceeds this value, certain products in their shopping cart will be lost.</p>
<h3>The Best Solution</h3>
<p>The best solution and the way I ultimately decided to solve this problem was to use a combination of cookies and my shopping cart database.  Here&#8217;s what I came up with.<br />
<code></code><br />
Whenever a customer enters my store, I place a cookie on their computer that is set to expire whenever I feel like it.  This cookie contains a secret id which I use to tag certain products in my database.  Whenever a customer places an item in their shopping cart, I also store the product in my database and tag it with this secret id.<br />
<code></code><br />
This way, I can keep track of everything that the customer is interested in based on this secret id which is stored on their computer in the form of a cookie.  If they choose to leave for a long time and come back, I look for the presence of this cookie and restore the contents of their shopping cart based on my database which is present for as long as I want it to be.<br />
<code></code><br />
The downside to this solution is that if a customer abandons their shopping cart, I will accumulate a lot of junk in my database which needs to be periodically cleaned up.  So to solve that problem, I set up a CRON job or automated task to automatically clean up the database every single night and remove items that exceed a certain age threshold.<br />
<code></code><br />
I&#8217;m still in the throes of testing my additions to my store and hope to be live with this new feature by the end of the week.  The best part is that by storing your abandoned shopping carts, you can also better observe your customers shopping patterns as well.</p>
]]></content:encoded>
			<wfw:commentRss>http://mywifequitherjob.com/persistent-shopping-carts/feed/</wfw:commentRss>
		<slash:comments>20</slash:comments>
		</item>
		<item>
		<title>3 Usability Issues With Our Online Store Website That Were Uncovered By A Clueless Customer</title>
		<link>http://mywifequitherjob.com/usability-issues-online-store/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=usability-issues-online-store</link>
		<comments>http://mywifequitherjob.com/usability-issues-online-store/#comments</comments>
		<pubDate>Wed, 08 Jun 2011 14:42:52 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[Establishing Your Website]]></category>
		<category><![CDATA[How to Build an Online Store]]></category>
		<category><![CDATA[checkout optimization]]></category>
		<category><![CDATA[customer support]]></category>
		<category><![CDATA[ecommerce]]></category>
		<category><![CDATA[online store]]></category>
		<category><![CDATA[usabilty]]></category>

		<guid isPermaLink="false">http://mywifequitherjob.com/?p=12388</guid>
		<description><![CDATA[Even though we&#8217;ve been running our online store with the same basic layout for a few years now, I&#8217;m continually amazed by how often I find problems with our website and how often I have to make subtle tweaks to improve conversions.  I&#8217;ve also come to the realization that I&#8217;m pretty lousy at predicting human behavior and anticipating how customers will interact with our user interface.



Photo By javYliz

In any case, the issues that I&#8217;m about to describe aren&#8217;t necessarily &#8220;bugs&#8221; per se but website usability issues that we discovered from talking to our customers directly.

9 times out of 10, a customer gets confused navigating through our online store because I&#8217;ve made certain assumptions about the way a user should interact with our site.  I&#8217;ve made certain assumptions about how clear the instructions are written and how tech savvy the internet user is.

And you know what?  I&#8217;ve found ...]]></description>
			<content:encoded><![CDATA[<p>Even though we&#8217;ve been running our online store with the same basic layout for a few years now, I&#8217;m continually amazed by how often I find problems with our website and how often I have to make subtle tweaks to improve conversions.  I&#8217;ve also come to the realization that I&#8217;m pretty lousy at predicting human behavior and anticipating how customers will interact with our user interface.<br />
<code></code><br />
<code></code></p>
<div class="alignright wp-caption" style="width:235px"><img src="http://mywifequitherjob.com/blog/wp-content/uploads/2011/06/clueless-225x300.jpg" alt="" title="clueless" width="225" height="300" class="alignright size-medium wp-image-12431" />
<p>Photo By javYliz</p>
</div>
<p>In any case, the issues that I&#8217;m about to describe aren&#8217;t necessarily &#8220;bugs&#8221; per se but website usability issues that we discovered from talking to our customers directly.<br />
<code></code><br />
9 times out of 10, a customer gets confused navigating through our online store because I&#8217;ve made certain assumptions about the way a user should interact with our site.  I&#8217;ve made certain assumptions about how clear the instructions are written and how tech savvy the internet user is.<br />
<code></code><br />
And you know what?  I&#8217;ve found that whenever I &#8220;assume&#8221;, it makes an &#8220;ass&#8221; out of &#8220;u&#8221; and &#8220;me&#8221; (One of my professors used to say this to me all the time).<br />
<code></code><br />
Now I&#8217;ll be the first one to admit that I have blinders are on when it comes to critiquing my own online store.  The problem when you design your own website is that you often overlook obvious mistakes because you are too familiar with your own design.  Of course you can ask your friends to provide their opinion as well, but most likely your friends won&#8217;t be an exact representation of your customer base either.<br />
<code></code><br />
For example, all of my friends are pretty web savvy so they can usually navigate through any decently implemented website.  The other problem is that your friends might be too polite to tell you how they truly feel.  In all cases, the best way to get the proper feedback is straight from the customer&#8217;s mouth which is why I take all customer feedback extremely seriously.<br />
<code></code><br />
Whenever a customer even hints at a usability issue with our site, I take a very close look and make changes where appropriate.  Here are a few tweaks that I made because of a single customer call we received last week.  You can be the judge about whether these problems were worth fixing.</p>
<h3>Default Radio Button Selection During Payment</h3>
<p>This particular customer called us because she could not figure out how to get past the payment screen during checkout.  Here&#8217;s a snapshot of our website for the purposes of illustration.  Can you tell what&#8217;s wrong with this picture?<br />
<code></code><br />
<img src="http://mywifequitherjob.com/blog/wp-content/uploads/2011/06/checkout.jpg" alt="" title="checkout" width="500" height="466" class="alignnone size-full wp-image-12421" /><br />
<code></code><br />
What happened was that this customer entered in all of her credit card information, but then forgot to hit the radio button to indicate that she was paying by credit card.  As a result, she kept getting the message &#8220;Please select from one of the following payment options&#8221; but couldn&#8217;t figure out what she was doing wrong.<br />
<code></code><br />
Now most users who are even remotely web savvy would figure this out eventually and click on the &#8220;Pay By Credit Card&#8221; radio button.   But the problem is that you have to design your website for the lowest common denominator.  And more often than not, this includes people who don&#8217;t think like you, people who may be used to doing things in a different way, and people who are just plain clueless.  In any case, as soon as she told me her problem, I was able to help her make it past the payment page.<br />
<code></code><br />
Now I&#8217;m a firm believer that if a single customer reports a usability problem with my website, then chances are there are many others out there who are experiencing the same problem without you even knowing.  So, I placed a piece of Google Analytics code on my store to track how many times people got the &#8220;Please select from one of the following payment options&#8221; error message for a period of 3 days.  Turns out that over 40% of customers received this error message!!<br />
<code></code><br />
The results indicated that my payment radio buttons were a clear usability problem with my website.  So ultimately, I made a change to have the &#8220;Pay By Credit Card&#8221; radio button selected by default because paying by credit card is the most common payment method for our store.</p>
<h3>Confirm Button Not Obvious Enough</h3>
<p>Unfortunately, the troubles with this particular customer were not over.  After making it past the payment page to the &#8220;confirmation&#8221; page, she simply abandoned her shopping cart and didn&#8217;t complete her purchase.  After having just spoken to this customer on the phone, I knew that she wanted to buy so I was puzzled as to why she left without finishing the transaction.<br />
<code></code><br />
So, I gave her a phone call to find out why.  Turns out that she thought that she had already completed her order after entering in her credit card information.  Now if you do a fair amount of shopping online, the way most shopping carts work is that after entering in your payment information, you are directed to a confirmation screen where you can verify your shipping address, your billing address and your shopping cart contents before you actually put the transaction through and pay.<br />
<code></code><br />
This lady wasn&#8217;t aware that she actually had to click another button to complete her order so she simply left!  After walking her through the ordering process over the phone, I decided to revisit my checkout process entirely and here&#8217;s what I changed.<br />
<code></code><br />
<img src="http://mywifequitherjob.com/blog/wp-content/uploads/2011/06/confirm.jpg" alt="" title="confirm" width="500" height="386" class="alignnone size-full wp-image-12441" /><br />
<code></code><br />
First off, I duplicated the &#8220;checkout timeline&#8221; graphic so that it was present at the top and bottom of the page.  This timeline informs customers exactly where they are in the checkout process.  In addition, I decided to make the &#8220;confirm&#8221; button a little more prominent so it would be less likely to be missed.  Hopefully, these 2 changes will prevent other customers from having the same problems.</p>
<h3>The Drama Wasn&#8217;t Over Yet</h3>
<p>After finally processing her order, I thought that the worst was over.  In fact, we shipped out her order immediately and 3 weeks passed so I thought everything was all good.  But then she called to complain that she never received her order.  Once again, I was puzzled.<br />
<code></code><br />
And it was only after confirming her address over the phone did I notice a major flaw in our shopping cart.  It turns out that the address field in our checkout form was not long enough to hold her entire address correctly because her address was abnormally long.  In fact, I don&#8217;t think I&#8217;d ever seen someone try to cram so much information into the address field ever!  The upshot was that there wasn&#8217;t enough room to include the suite number for her building so a few digits got cut off at the end of her address.  Once that issue was resolved, I made a change to the shopping cart to allow unlimited characters in the address!</p>
<h3>The Bugs Never End</h3>
<p>We&#8217;ve been using the same shopping cart design for a few years now and we still find small issues all the time.  It just goes to show that you need to be constantly aware of usability issues with your shopping cart and nip them in the bud as soon as they are discovered.  Make sure you listen to your customers because they are ones paying the bills.</p>
]]></content:encoded>
			<wfw:commentRss>http://mywifequitherjob.com/usability-issues-online-store/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
	</channel>
</rss>

