<?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>Musings From the Throne &#187; Shopping Cart Usability</title>
	<atom:link href="http://www.tinyqueen.com/category/shopping-cart-usability/feed" rel="self" type="application/rss+xml" />
	<link>http://www.tinyqueen.com</link>
	<description>Random Ramblings from the Tiny Queen</description>
	<lastBuildDate>Fri, 04 Mar 2011 15:16:19 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=8911</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Miva Merchant: Customer Account Creation on INVC Page</title>
		<link>http://www.tinyqueen.com/ecommerce/miva-merchant-customer-account-creation-on-invc-page</link>
		<comments>http://www.tinyqueen.com/ecommerce/miva-merchant-customer-account-creation-on-invc-page#comments</comments>
		<pubDate>Thu, 26 Feb 2009 20:04:00 +0000</pubDate>
		<dc:creator>Tiny Queen</dc:creator>
				<category><![CDATA[Ecommerce]]></category>
		<category><![CDATA[Miva Merchant]]></category>
		<category><![CDATA[Shopping Cart Usability]]></category>
		<category><![CDATA[Store Morph Technology]]></category>

		<guid isPermaLink="false">http://localhost/TinyQueen/wordpress/?p=41</guid>
		<description><![CDATA[Recently there&#8217;s been lots of buzz on the Miva Merchant User Support Forum about moving the account creation process to the end of the checkout. There are a number of good reasons for doing this. First, you eliminate one of the checkout screens, and streamline the checkout process. Second, and more importantly, you eliminate a [...]]]></description>
			<content:encoded><![CDATA[<p>Recently there&#8217;s been lots of buzz on the <a href="http://extranet.mivamerchant.com/forums">Miva Merchant User Support Forum</a> about moving the account creation process to the end of the checkout. There are a number of good reasons for doing this. First, you eliminate one of the checkout screens, and streamline the checkout process. Second, and more importantly, you <span style="font-weight: bold;">eliminate a decision</span> from the checkout process.</p>
<p>There&#8217;s a <a href="http://www.amazon.com/Think-Common-Sense-Approach-Usability/dp/0789723107">great usability book</a> out there by a fellow named Steve Krug, called &#8220;Don&#8217;t Make Me Think&#8221; That book title couldn&#8217;t be more apt for the checkout process in a shopping cart. When your shoppers commit enough to hit the checkout button, don&#8217;t present them with a new decision to have to make before they can get started.</p>
<p>As one person put it, your shoppers aren&#8217;t looking to develop a relationship with you. You have something they want, and they want to give you their money so you can send it to them. Since you want to get their money and send them things, it seems you have a common goal. So why not make it easier to achieve that goal? Get the sale, <span style="font-style: italic;"> and then</span> offer them the opportunity to create an account if they think they&#8217;d like to come back and shop again. But don&#8217;t clutter the checkout process with an unnecessary decision.</p>
<p>So, to the meat of the matter. How does one go about creating an account for a customer using the information available on the INVC page? Since they&#8217;ve already provided their shipping and billing information, there are only two additional bits you need from them: a user name, and a password. The rest you can feed to the form from what they&#8217;ve already told you.</p>
<p>In your INVC page template, decide where you want to present the account creation option, and add the following code. The hidden input for PrevPage isn&#8217;t required, but it gives you a global variable to test against if you want to customize the ACED page to display a &#8220;Thank you for creating your account&#8221; message instead of the account edit form.</p>
<p>You&#8217;ll have to do your own form styling, but this should give you the bare bones you need to get started.</p>
<pre title="code" class="html">
&lt;form method="post" action="&amp;mvt:global:secure_sessionurl;"&gt;
&lt;input type="hidden" name="Store_Code" value="&amp;mvte:global:Store_Code;"&gt;
&lt;input type="hidden" name="Action" value="ICST"&gt;
&lt;input type="hidden" name="Screen" value="ACED"&gt;
&lt;input type="hidden" name="PrevPage" value="INVC"&gt;
&lt;label for="login"&gt;User Name&lt;/label&gt;
&lt;input type="text" id="login" name="Customer_Login" value="&amp;mvte:global:Customer_Login;"&gt;
&lt;label for="pass"&gt;Password&lt;/label&gt;
&lt;input type="password" id="pass" name="Customer_Password" size="25" value="&amp;mvte:global:Customer_Password;"&gt;
&lt;label for="verifypass"&gt;Confirm Password&lt;/label&gt;
&lt;input type="password" id="verifypass" name="Customer_VerifyPassword" size="25" value="&amp;mvte:global:Customer_VerifyPassword;"&gt;
&lt;input type="hidden" name="Customer_PasswordEmail" value="&amp;mvte:order:bill_email;"&gt;
&lt;input type="hidden" name="Customer_ShipFirstName" value="&amp;mvte:order:ship_fname;"&gt;
&lt;input type="hidden" name="Customer_ShipLastName" value="&amp;mvte:order:ship_lname;"&gt;
&lt;input type="hidden" name="Customer_ShipEmail" value="&amp;mvte:order:ship_email;"&gt;
&lt;input type="hidden" name="Customer_ShipPhone" value="&amp;mvte:order:ship_phone;"&gt;
&lt;input type="hidden" name="Customer_ShipFax" value="&amp;mvte:order:ship_fax;"&gt;
&lt;input type="hidden" name="Customer_ShipAddress" value="&amp;mvte:order:bill_addr;"&gt;
&lt;input type="hidden" name="Customer_ShipCompany" value="&amp;mvte:order:ship_comp;"&gt;
&lt;input type="hidden" name="Customer_ShipCity" value="&amp;mvte:order:ship_city;"&gt;
&lt;input type="hidden" name="Customer_ShipState" value="&amp;mvte:order:ship_state;"&gt;
&lt;input type="hidden" name="Customer_ShipZip" value="&amp;mvte:order:ship_zip;"&gt;
&lt;input type="hidden" name="Customer_ShipCountry" value="&amp;mvte:order:ship_cntry;"&gt;
&lt;input type="hidden" name="Customer_BillFirstName" value="&amp;mvte:order:bill_fname;"&gt;
&lt;input type="hidden" name="Customer_BillLastName" value="&amp;mvte:order:bill_lname;"&gt;
&lt;input type="hidden" name="Customer_BillEmail" value="&amp;mvte:order:bill_email;"&gt;
&lt;input type="hidden" name="Customer_BillPhone" value="&amp;mvte:order:bill_phone;"&gt;
&lt;input type="hidden" name="Customer_BillFax" value="&amp;mvte:order:bill_fax;"&gt;
&lt;input type="hidden" name="Customer_BillAddress" value="&amp;mvte:order:bill_addr;"&gt;
&lt;input type="hidden" name="Customer_BillCompany" value="&amp;mvte:order:bill_comp;"&gt;
&lt;input type="hidden" name="Customer_BillCity" value="&amp;mvte:order:bill_city;"&gt;
&lt;input type="hidden" name="Customer_BillState" value="&amp;mvte:order:bill_state;"&gt;
&lt;input type="hidden" name="Customer_BillZip" value="&amp;mvte:order:bill_zip;"&gt;
&lt;input type="hidden" name="Customer_BillCountry" value="&amp;mvte:order:bill_cntry;"&gt;
&lt;mvt:item name="buttons" param="Save" /&gt;
&lt;/form&gt;
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.tinyqueen.com/ecommerce/miva-merchant-customer-account-creation-on-invc-page/feed</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>One Page Checkout &#8212; Holy Grail or Wholly Confusing?</title>
		<link>http://www.tinyqueen.com/ecommerce/one-page-checkout-holy-grail-or-wholly-confusing</link>
		<comments>http://www.tinyqueen.com/ecommerce/one-page-checkout-holy-grail-or-wholly-confusing#comments</comments>
		<pubDate>Wed, 25 Jul 2007 14:17:00 +0000</pubDate>
		<dc:creator>Tiny Queen</dc:creator>
				<category><![CDATA[Ecommerce]]></category>
		<category><![CDATA[Miva Merchant]]></category>
		<category><![CDATA[Shopping Cart Usability]]></category>

		<guid isPermaLink="false">http://localhost/TinyQueen/wordpress/?p=16</guid>
		<description><![CDATA[One of the historic criticisms of Miva Merchant has been the number of steps it takes to get through the checkout.

Ask people whether or not they want to create an account.  If they have an account, make them log in.
Ask for shipping and billing information.
Throw some upsales at them and hope they&#8217;ll bite.
Find out [...]]]></description>
			<content:encoded><![CDATA[<p>One of the historic criticisms of Miva Merchant has been the number of steps it takes to get through the checkout.</p>
<ol>
<li>Ask people whether or not they want to create an account.  If they have an account, make them log in.</li>
<li>Ask for shipping and billing information.</li>
<li>Throw some upsales at them and hope they&#8217;ll bite.</li>
<li>Find out how they want to pay and what method of shipping they&#8217;d like.</li>
<li>Get their payment details from them.</li>
<li><span style="font-style: italic;">At long last</span>, give them an invoice.</li>
</ol>
<p>Those who criticized Miva&#8217;s checkout process held up the concept of &#8220;one page checkout&#8221; as somewhat of a Holy Grail. And over time, I admit, I began to subscribe to the idea that a single page checkout process was not only to be admired, but to be aimed for even when it meant cramming the page with decisions for the shopper to make.</p>
<p>Recently, however, Bruce Golub of <a href="http://phosphormedia.com/">Phosphor Media</a>, a respected member of the Miva Merchant community, made a comment about one page checkouts that made me sit up and take notice.</p>
<p>According to Bruce, it&#8217;s not the number of steps in the process, but how <span style="font-weight: bold;">understandable</span> the checkout process is that matters.  Remove distractions.  Remove advertising. Tell the shopper what to expect. <span style="font-weight: bold;">Focus</span> the shopper on what to do next and how to do it.</p>
<p>Wow. Such simple advice, and yet it just makes so much sense. We think that by not making our customers click &#8220;continue&#8221; a few times, we&#8217;re making it easier on them. In fact, we may just be doing the opposite. By trying to do too much on a single page, we risk distracting the customer from the checkout process entirely, or simply overwhelming the customer with information and tasks. The likelihood that they will overlook inputting some detail of the checkout process goes up, increasing the checkout error rate, and increasing customer frustration &#8212; and frustrated customers are bad for business.</p>
<p>Thanks, Bruce, for putting the checkout process back in perspective.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tinyqueen.com/ecommerce/one-page-checkout-holy-grail-or-wholly-confusing/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Search Friendly Links in Miva</title>
		<link>http://www.tinyqueen.com/ecommerce/search-friendly-links-in-miva</link>
		<comments>http://www.tinyqueen.com/ecommerce/search-friendly-links-in-miva#comments</comments>
		<pubDate>Mon, 23 Jul 2007 17:59:00 +0000</pubDate>
		<dc:creator>Tiny Queen</dc:creator>
				<category><![CDATA[Ecommerce]]></category>
		<category><![CDATA[Miva Merchant]]></category>
		<category><![CDATA[Shopping Cart Usability]]></category>

		<guid isPermaLink="false">http://localhost/TinyQueen/wordpress/?p=15</guid>
		<description><![CDATA[There&#8217;s been some animated discussion over the last several days on the Miva 5 User Group Forum about the use of Search Friendly Links, with some thought-provoking input from some of the &#8220;heavy hitters&#8221; in the Miva and ecommerce marketing communities. Just exactly what is this hype all about, though?
Well, let&#8217;s start by taking a [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.tinyqueen.com/images/blog/http-753906.jpg" alt="" class="alignright">There&#8217;s been some animated discussion over the last several days on the <a href="http://extranet.miva.com/forums/forumdisplay.php?f=24">Miva 5 User Group Forum</a> about the use of Search Friendly Links, with some thought-provoking input from some of the &#8220;heavy hitters&#8221; in the Miva and ecommerce marketing communities. Just exactly what is this hype all about, though?</p>
<p>Well, let&#8217;s start by taking a look at what we mean by a Search Friendly Link.</p>
<p>A regular Miva Merchant link to a product page for a product named widget that has a product sku of SQK-233 looks like this:<br />
&lt;a href=&#8221;http://www.domain.com/mm5/merchant.mvc?Screen=PROD&amp;Store_Code=StoreName&#038;Product_Code=SQK-233&#8243;&gt;</p>
<p>Kinda long and klunky, isn&#8217;t it?  The items after the question mark in the standard Miva link (Screen=PROD, for example) are called parameters. Parameters are common in links for dynamic websites where data is stored in a database; parameters determine what content will be pulled from the database to be displayed on the page. There&#8217;s lots of debate in the SEO community about parameters in URLs, and what effect, if any, they have on indexing and ranking of pages</p>
<p>There are numerous ways to write Search Friendly Links, and Pete McNamara (an internet marketing and Miva Merchant specialist for whom I have a great deal of respect) has written an excellent tutorial on creating <a href="http://internetmarketingengine.com/ecommerce/search-friendly-links-tutorial-mm5.html">Search Friendly links for Miva 5</a>.  Following Pete&#8217;s tutorial, one version of a Search Friendly link for our widget might be:<br />
&lt;a href=&#8221;http://www.domain.com/p/widget.html&#8221;&gt;</p>
<p>Ahhhh&#8230;.short and sweet!</p>
<p>Putting aside the seo debate of whether or not search engines can or do easily index links containing multiple parameters, the fact is that so-called &#8220;search friendly&#8221; links are also <strong>people friendly</strong>. A short link like the one in the second example above is easier to type, easier to remember, and easier to copy and paste into an email without the link breaking.</p>
<p>Some schools of thought in the SEO community hold that search engines take the presence of kewyords in the URL into account when ranking pages, while others claim it makes no difference. (In case you haven&#8217;t noticed, the SEO community loves to argue!) But, regardless of whether search engines give weight to the use of keywords in URLs, the fact is that in many search queries those keywords will appear bolded in the search results. This helps those links to visually stand out, and people may be more likely to notice and click those links because of the highlighted keywords. And <strong>nobody</strong> would argue that an increase in targeted website traffic is a bad thing.</p>
<p>All of which adds up to Search Friendly Links being better for people. Better for people means better for your customers, and the more you do to make you website accessible and friendly to your customers, the more likely it is that your site will bring you those precious sales.</p>
<p>So, if Search Friendly Links are also more user friendly, shouldn&#8217;t everyone use them? Not necessarily. If you have a new site, by all means you should embrace search friendly links. On the other hand, if your site is already indexed by the search engines, and ranking well, it&#8217;s not a good idea to just up and change the links to your pages. You need to think long and hard about your reasons for wanting to change your links, and what you hope to gain by doing do. Then weigh those gains carefully against the risks of losing your search positioning, even temporarily.</p>
<p>If you decide that the risks are worth it, be certain that you implement proper 301 redirects for any pages for which the URL has changed. (A 301 redirect is a server-level directive to search engines and browsers that basically says, &#8220;Hey, the stuff you&#8217;re looking for has moved permanently to this new place over here.&#8221;)  301 redirects aren&#8217;t guaranteed to protect your rankings, but they will definitely help to minimize any damage done.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tinyqueen.com/ecommerce/search-friendly-links-in-miva/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

