<?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>DoublePlus &#187; Susan Petracco</title>
	<atom:link href="http://www.doubleplus.com/author/admin/feed" rel="self" type="application/rss+xml" />
	<link>http://www.doubleplus.com</link>
	<description>Ecommerce for the Rest of Us</description>
	<lastBuildDate>Tue, 31 Jan 2012 21:53:24 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Google, Rich Snippets, and Miva Merchant</title>
		<link>http://www.doubleplus.com/google-rich-snippets-and-miva-merchant.html</link>
		<comments>http://www.doubleplus.com/google-rich-snippets-and-miva-merchant.html#comments</comments>
		<pubDate>Tue, 31 Jan 2012 21:52:04 +0000</pubDate>
		<dc:creator>Susan Petracco</dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[miva merchant]]></category>
		<category><![CDATA[rich snippets]]></category>
		<category><![CDATA[schema.org]]></category>

		<guid isPermaLink="false">http://www.doubleplus.com/?p=1709</guid>
		<description><![CDATA[I bet you&#8217;re looking to stand out in the search engines. Right? Of course, we all are. Especially e-commerce sites, whose business often is so completely tied to search engine traffic. Although we usually focus on getting our pages ranked higher, it&#8217;s also important to make those listings enticing enough that people want to click [...]]]></description>
			<content:encoded><![CDATA[<p>I bet you&#8217;re looking to stand out in the search engines.</p>
<p>Right?</p>
<p>Of course, we all are. Especially e-commerce sites, whose business often is so completely tied to search engine traffic. Although we usually focus on getting our pages ranked higher, it&#8217;s also important to make those listings enticing enough that people want to click on them. Traditionally, we&#8217;ve only been able to affect changes in the page title and snippet that appears under the link to our website. But a newer technology known as Rich Snippets allows us to potentially include much more information with our page listings in the SERPs.</p>
<div id="attachment_1713" class="wp-caption aligncenter" style="width: 460px"><img class="size-full wp-image-1713" title="Rich Snippets Shown in Google SERPs" src="http://www.doubleplus.com/wp-content/richSnippetsGoogle.jpg" alt="Rich Snippets Shown in Google SERPs" width="450" height="250" /><p class="wp-caption-text">Rich Snippets Shown in Google SERPs</p></div>
<p>The results above show two sites (BestBuy and WalMart) with Rich Snippet data in their listings. BestBuy.com includes the average rating, number of reviews, price, and availability. WalMart&#8217;s listing shows price and availability, only. Compare that to the next listing down, a site named B&amp;H Photo Video, who has no Rich Snippet data in Google&#8217;s listings.</p>
<p>What Are Rich Snippets? The terms applies to one of several forms of markup for small pieces of text called snippets, that provide valuable information about a web property. For e-commerce sites, this means product name, price, manufacturer, UPC, ISBN, review information, and an image. There are several methods for providing rich snippet markup, but <a href="http://www.youtube.com/watch?v=A-kX0Aut-18&amp;list=PL3107CD6C86454FE3&amp;index=1&amp;feature=plpp_video" target="_blank">Google is recommending</a> that people use the microdata format outlined by <a href="http://schema.org/" target="_blank">schema.org</a>.</p>
<h2>How to Set Up Rich Snippets in Miva Merchant</h2>
<p>Not too long ago we set up a couple of customers&#8217; sites with Rich Snippets using the schema.org microdata formatting. We did this by logging into Miva Merchant, going to Pages, finding the Product Display page (code &#8220;PROD&#8221;) and then clicking the Product Display Layout. (See graphic below.) Make sure you&#8217;re using the Advanced Mode where you can edit the HTML directly. (If not, scroll to the bottom and click the &#8220;Advanced Mode&#8221; link.)</p>
<p><a href="http://www.doubleplus.com/wp-content/prod.jpg"><img class="aligncenter size-full wp-image-1714" title="Miva Merchant PROD Page Product Details" src="http://www.doubleplus.com/wp-content/prod.jpg" alt="Miva Merchant PROD Page Product Details" width="670" height="320" /></a></p>
<p>When setting up Rich Snippets, it&#8217;s important to work them into the existing page structure. You can&#8217;t simply group them in a div on the page that you hide using CSS, because Google states that they won&#8217;t use information in hidden divs. Instead, put the snippet HTML within your current page HTML.</p>
<h3>The Product Itself</h3>
<p>To start, we put a (non-hidden!) div around the entire contents of the Product Display Layout box, by putting this as the very first line:</p>
<pre class="crayon-plain-tag"><code>&lt;div itemscope itemtype=&quot;http://schema.org/Product&quot;&gt;</code></pre></p>
<p>and at the bottom simply putting in the corresponding closing tag (&lt;/div&gt;). This indicates that the HTML within is being used to describe a product.</p>
<h3>The Product Name, Description, and Image</h3>
<p>Let&#8217;s start with three simple pieces of information &#8211; the name of the product, its image, and the product description. Originally we simply had wrapped the name inside of an &lt;h1&gt; tag like this:</p>
<pre class="crayon-plain-tag"><code>&lt;h1&gt;&amp;mvt:product:name;&lt;/h1&gt;</code></pre><p><p>In order to specify that the text inside this &lt;h1&gt; tag refers to the name of the product we&#8217;re describing, we add an &#8220;itemprop&#8221; attribute to the tag (short for &#8220;item property&#8221;), like this:</p>
<pre class="crayon-plain-tag"><code>&lt;h1 itemprop=&quot;name&quot;&gt;&amp;mvt:product:name;&lt;/h1&gt;</code></pre><p><p>
<p>This tells Google that the text inside this tag is the name of the product. The image works basically the same way; it&#8217;s already on the page and just needs the itemprop attribute added to the tag to turn it into the right format for Rich Snippets. So we started with this:</p>
<pre class="crayon-plain-tag"><code>&lt;img src=&quot;/path/to/image.jpg&quot; alt=&quot;&amp;mvte:product:name;&quot; /&gt;</code></pre>
<p>And ended up with:</p>
<pre class="crayon-plain-tag"><code>&lt;img itemprop=&quot;image&quot; src=&quot;/path/to/image.jpg&quot; alt=&quot;&amp;mvte:product:name;&quot; /&gt;</code></pre>
<p>Finally, we did the same thing &#8211; adding the itemprop attribute &#8211; to the description:</p>
<pre class="crayon-plain-tag"><code>&lt;span&gt;&amp;mvt:product:descrip;&lt;/span&gt;</code></pre>
<p>Became:</p>
<pre class="crayon-plain-tag"><code>&lt;span itemprop=&quot;description&quot;&gt;&amp;mvt:product:descrip;&lt;/span&gt;</code></pre>
<h3>Breadcrumbs</h3>
<p>Next we tackled the breadcrumbs for the product &#8211; the links at the top of a page that show the product&#8217;s position within the site hierarchy (such as Home &gt; Apparel &gt; Women&#8217;s &gt; Shirts). This is a little more complex because there are multiple pieces of code being changed. Originally the code looked like this:</p>
<pre class="crayon-plain-tag"><code>&lt;div id=&quot;breadcrumbs&quot;&gt;
	&lt;mvt:foreach iterator=&quot;path&quot; array=&quot;breadcrumbs:trails&quot;&gt;
		&lt;a href=&quot;&amp;mvt:global:basedomain;&quot;&gt;Home&lt;/a&gt;
		&lt;mvt:foreach iterator=&quot;atrail&quot; array=&quot;path:trail&quot;&gt;
			&amp;raquo; &lt;a href=&quot;&amp;mvt:global:basedomain;/&amp;mvt:atrail:code;.html&quot;&gt;&amp;mvt:atrail:name;&lt;/a&gt;
		&lt;/mvt:foreach&gt;
		&lt;br /&gt;
	&lt;/mvt:foreach&gt;
&lt;/div&gt;</code></pre><p><p><p><p><p><p><p>
<p>After adding the code for the Rich Snippets, this section now becomes:</p>
<pre class="crayon-plain-tag"><code>&lt;div id=&quot;breadcrumbs&quot;&gt;
	&lt;mvt:foreach iterator=&quot;path&quot; array=&quot;breadcrumbs:trails&quot;&gt;
		&lt;span itemscope itemtype=&quot;http://data-vocabulary.org/Breadcrumb&quot;&gt;
			&lt;a href=&quot;&amp;mvt:global:basedomain;&quot; itemprop=&quot;url&quot;&gt;
				&lt;span itemprop=&quot;title&quot;&gt;Home&lt;/span&gt;
			&lt;/a&gt;
		&lt;/span&gt;
		&lt;mvt:foreach iterator=&quot;atrail&quot; array=&quot;path:trail&quot;&gt;
			&amp;raquo;
			&lt;span itemscope itemtype=&quot;http://data-vocabulary.org/Breadcrumb&quot;&gt;
				&lt;a href=&quot;&amp;mvt:global:basedomain;/&amp;mvt:atrail:code;.html&quot; itemprop=&quot;url&quot;&gt;
					&lt;span itemprop=&quot;title&quot;&gt;&amp;mvt:atrail:name;&lt;/span&gt;
				&lt;/a&gt;
			&lt;/span&gt;
		&lt;/mvt:foreach&gt;
		&lt;br /&gt;
	&lt;/mvt:foreach&gt;
&lt;/div&gt;</code></pre><p><p><p><p><p><p><p><p>
<p>Each entry (&#8220;crumb&#8221;) in the breadcrumbs needs to be wrapped inside a &lt;span&gt; tag identifying it as a breadcrumb. The opening span tag looks like this:</p>
<pre class="crayon-plain-tag"><code>&lt;span itemscope itemtype=&quot;http://data-vocabulary.org/Breadcrumb&quot;&gt;</code></pre>
<p>We also have to add an itemprop attribute with the value &#8220;url&#8221; to the anchor tag (&lt;a&gt;) and a span with the itemprop of &#8220;title&#8221; around the link text.</p>
<h3>How to Use Hidden Data &#8211; The Model Information</h3>
<p>Next, we wanted to list the contents of our custom product field with the code &#8220;MPN&#8221; as the &#8220;model&#8221; snippet. Unfortunately, the MPN isn&#8217;t displayed visually to the customer on the product detail screen. Google says we shouldn&#8217;t put the information inside hidden &lt;div&gt; tags. This is where the &lt;meta&gt; tag comes in handy &#8211; it&#8217;s for providing data via Rich Snippets that we don&#8217;t use on the page itself:</p>
<pre class="crayon-plain-tag"><code>&lt;meta itemprop=&quot;model&quot; content=&quot;&amp;mvt:product:customfield_values:customfields:MPN;&quot; /&gt;</code></pre>
<p>Here, we specify a &lt;meta&gt; tag inside our product description, give it an itemprop attribute with the value &#8220;model&#8221;, and in the content we print out the text stored in our custom product field with the code &#8220;MPN&#8221;. This tag isn&#8217;t displayed at all in the browser, but it provides the necessary information to Google about the model number of the product.</p>
<h3>Pricing Information &#8211; The Offer</h3>
<p>An offer is the overall pricing information regarding the product that you&#8217;re selling. We wrapped the entire set of pricing HTML/SMT code within a div that indicates the offer. This &lt;div&gt; tag went around our pricing information that was already in place. The site uses a custom product field to display the product&#8217;s regular price if it&#8217;s on sale. So the final code for the offer becomes:</p>
<pre class="crayon-plain-tag"><code>&lt;div itemprop=&quot;offers&quot; itemscope itemtype=&quot;http://schema.org/Offer&quot;&gt;
	&lt;mvt:if expr=&quot;l.settings:product:customfield_values:customfields:regularprice GT 0&quot;&gt;
		&lt;span id=&quot;prodsaleprice&quot;&gt;SALE &lt;span itemprop=&quot;price&quot;&gt;&amp;mvt:product:formatted_price;&lt;/span&gt; &lt;/span&gt; 
		&lt;span id=&quot;prodregprice&quot;&gt;reg. $&amp;mvt:product:customfield_values:customfields:regularprice;&lt;/span&gt;&lt;br /&gt;
	&lt;mvt:else&gt;
		&lt;span id=&quot;prodpricelabel&quot;&gt;Price&lt;/span&gt; &lt;span id=&quot;prodprice&quot;&gt;&lt;span itemprop=&quot;price&quot;&gt;&amp;mvt:product:formatted_price;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
	&lt;/mvt:if&gt;
	&lt;meta itemprop=&quot;availability&quot; content=&quot;in_stock&quot; /&gt;
	&lt;meta itemprop=&quot;priceCurrency&quot; content=&quot;USD&quot; /&gt;
&lt;/div&gt;</code></pre><p><p><p><p><p><p><p><p><p><p><p>
<p>On lines 1 and 9, we&#8217;ve added the &lt;div&gt; tag that indicates that this is the offer information. Inside both the &#8220;if&#8221; and &#8220;else&#8221; clauses where we&#8217;re checking for a value in the &#8220;regularprice&#8221; custom product field, we&#8217;ve added itemprop=&#8221;price&#8221; to show that this is the price. This element can include the currency symbol. We didn&#8217;t add anything to the &#8220;regular price&#8221; display because we don&#8217;t want to feed that through to Google as part of our Rich Snippets.</p>
<p>The other two pieces of information we need to provide are the item&#8217;s availability and the currency code, which are both parts part of the offer. We use the &lt;meta&gt; tag described earlier to include this information, because it doesn&#8217;t normally show on the page itself.</p>
<p>So that&#8217;s a brief introduction on how to set up Rich Snippets using Schema.org markup on your Miva Merchant store.</p>
<p><em>Stay tuned for Part 2 of this post which will go through ratings and reviews for products on an e-commerce site, as well as testing and notifying Google of your changes.</em></p>
<div class="shr-publisher-1709"></div>]]></content:encoded>
			<wfw:commentRss>http://www.doubleplus.com/google-rich-snippets-and-miva-merchant.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Happy New Year, I&#8217;ve Missed You!</title>
		<link>http://www.doubleplus.com/happy-new-year-ive-missed-you.html</link>
		<comments>http://www.doubleplus.com/happy-new-year-ive-missed-you.html#comments</comments>
		<pubDate>Mon, 02 Jan 2012 16:30:09 +0000</pubDate>
		<dc:creator>Susan Petracco</dc:creator>
				<category><![CDATA[People and Events]]></category>

		<guid isPermaLink="false">http://www.doubleplus.com/?p=1697</guid>
		<description><![CDATA[Well, readers, how many of you do I have left? I just got home from teaching a Zumba class, and patting myself on the back for accomplishing one of my New Year&#8217;s resolutions for last year, while at the same time knowing my plans to write the first post that has been published here since [...]]]></description>
			<content:encoded><![CDATA[<div class="wp-caption alignright" style="width: 303px"><a href="http://commons.wikipedia.org/wiki/File:NewYearsResolution1915SecondPostcard.jpg"><img class="zemanta-img-inserted zemanta-img-configured" title="English: New Year's Resolutions postcard" src="http://upload.wikimedia.org/wikipedia/commons/3/3e/NewYearsResolution1915SecondPostcard.jpg" alt="English: New Year's Resolutions postcard" width="293" height="447" /></a><p class="wp-caption-text">Image via Wikipedia</p></div>
<p>Well, readers, how many of you do I have left? I just got home from teaching a Zumba class, and patting myself on the back for accomplishing one of my <a href="http://www.doubleplus.com/my-new-years-resolutions.html">New Year&#8217;s resolutions</a> for last year, while at the same time knowing my plans to write the first post that has been published here since August 2011. Sheesh! Well, it&#8217;s a new year and time for new commitments, but also for looking back at last year to see what was accomplished.</p>
<p>I wrote my list of resolutions on this blog last year as a way to keep myself accountable, and since most of them pertained to <a href="http://www.accuratetax.com" target="_blank">my</a> <a href="http://www.click-2-customer.com" target="_blank">e-commerce</a> <a href="http://www.feedexact.com" target="_blank">businesses</a> it seemed appropriate. But how many did I accomplish? Here&#8217;s a shortened version of the list:</p>
<h3>Business</h3>
<ol>
<li><strong>Increase market understanding of AccurateTax</strong>: I can&#8217;t say that I really did a lot to increase media exposure to AccurateTax, but we did run some good advertising campaigns to bring in new business. 2012 has a lot in store with the proposed upcoming <a href="http://www.newrules.org/retail/rules/internet-sales-tax-fairness/main-street-fairness-act" target="_blank">Main Street Fairness Act</a>.</li>
<li><strong>Rework Click2Customer website</strong>: Talk about your last minute resolution-fulfillment! Last week we launched a brand new version of the Click2Customer website, with a new design and much better descriptions of what the service does. I just made it! This year, I want to increase our exposure of the product. We&#8217;ll be attending the Miva Merchant conference and maybe the Magento one too with the hopes of getting new customers to try the product.</li>
<li><strong>Update the FeedExact website with current list of comparison shopping engines supported</strong>: Check. This one was easy!</li>
<li><strong>Increase customer self-service options with better documentation (and possibly customer forums) across all three products</strong>: We accomplished some of this &#8211; my partner Pete made some great <a href="http://www.youtube.com/user/click2customer?feature=mhee">Click-2-Customer videos</a> which we&#8217;re putting online at YouTube. We&#8217;re still toying with the idea of forums&#8230;</li>
<li><strong>Do regular email marketing for NetBlazon</strong>: Yeah, right? Let&#8217;s put this one on the list for 2012!</li>
<li><strong>Document and release already-completed modules for Miva Merchant 5</strong>: Sometimes resolutions change. We did get documentation online for those we&#8217;d released, but we took a break from adding any new modules. This isn&#8217;t our focus right now and we didn&#8217;t want to take away from the other things we wanted to work on. Tabled.</li>
<li><strong>Increase the frequency of DoublePlus posts to at least 2 per week</strong>: Did you notice how well I did on this for about 7 months? Woot! And then I let it fall off. Sometimes I have to wear too many hats, but this one is going back on my head for 2012.</li>
<li><strong>Explore ways to increase readership and subscribers, through things like popups, giveaways, contests</strong>: I&#8217;m torn between maintaining professionalism and getting more people over here, but I decided to err on the side of caution for now and forego the kitsch. I was lucky to get listed on Alltop, but not keeping the site updated made it fall off. I&#8217;m very disappointed with myself for that.</li>
<li><strong>Interact and socialize more through guest-posting and social media</strong>: I did a little guest posting and quite a bit of social media. Speaking of that, have you liked <a href="http://www.facebook.com/DoublePlusECommerce" target="_blank">our Facebook page</a> yet?</li>
<li><strong>Stop procrastinating!</strong>: YES YES YES! This one almost makes up for the Alltop delisting. My books are up-to-date, most of my client work is as well, and my overall stress level has decreased as a result.</li>
</ol>
<h3>Personal</h3>
<p>Just a quick follow-up on these &#8211; yes, I am now a certified Zumba instructor, with additional licenses for Zumba Toning and Zumbatomic, the kids program. I taught at a local elementary school this past fall, and I currently teach one class a week at a local fitness studio. Zumba gives me something to do away from the computer, which I need for balance. And I did take the Jeopardy! online quiz, but Alex has yet to call. I&#8217;ll be trying again in January.</p>
<p>Please please stick around for 2012. I really appreciate all of you who are still here reading. May 2012 be the best year yet for all of us!</p>
<p>&#8211;Susan</p>
<div class="shr-publisher-1697"></div>]]></content:encoded>
			<wfw:commentRss>http://www.doubleplus.com/happy-new-year-ive-missed-you.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Viral Marketing for B2B Stores</title>
		<link>http://www.doubleplus.com/viral-marketing-b2b-stores.html</link>
		<comments>http://www.doubleplus.com/viral-marketing-b2b-stores.html#comments</comments>
		<pubDate>Mon, 01 Aug 2011 14:30:36 +0000</pubDate>
		<dc:creator>Susan Petracco</dc:creator>
				<category><![CDATA[Marketing]]></category>
		<category><![CDATA[link building]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[social media]]></category>

		<guid isPermaLink="false">http://www.doubleplus.com/?p=1671</guid>
		<description><![CDATA[One of the problems in the B2B space is that your products are sold based on customer need, not desire, beauty, or trends. It&#8217;s much easier to get customers talking about fashion or entertainment than about, well, ID cards. Retailer IDWholesaler.com wanted to break through that barrier, and get people talking about their products and [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-1681" title="Viral Marketing for B2B Sites" src="http://www.doubleplus.com/wp-content/idwcontest.jpg" alt="Viral Marketing for B2B Sites" width="234" height="234" />One of the problems in the B2B space is that your products are sold based on customer need, not desire, beauty, or trends. It&#8217;s much easier to get customers talking about fashion or entertainment than about, well, ID cards. Retailer IDWholesaler.com wanted to break through that barrier, and get people talking about their products and build great inbound links at the same time. <span id="more-1671"></span>So they decided to focus on a subset of their business &#8211; the lanyards people often use to wear their work ID badges &#8211; and combine it with the artists who design custom lanyards in a viral contest that led to great results.</p>
<p>IDWholesaler sells lanyards themselves, including custom lanyards that can be imprinted with a company logo. So it&#8217;s important to their business to rank on various keyword phrases that include the word &#8220;lanyard&#8221;. Instead of trying to promote their products directly, however, they turned to the community of artists and craftspeople who make beautiful jewelry-inspired lanyards. The popularity of this art is easily seen in online communities and on stores like <a href="http://www.etsy.com/search/handmade?search_submit=&amp;q=lanyard" target="_blank">Etsy.com</a> where you can find beautiful, one-of-a-kind lanyards for ID badges or other purposes (like holding eyeglasses around your neck). IDWholesaler engaged these artists with a unique contest.</p>
<div id="attachment_1677" class="wp-caption aligncenter" style="width: 545px"><img class="size-full wp-image-1677 " title="Lanyard Contest Sub-site" src="http://www.doubleplus.com/wp-content/idwlanyard.jpg" alt="Lanyard Contest Sub-site" width="535" height="469" /><p class="wp-caption-text">Lanyard Contest Sub-site</p></div>
<p>The engagement point for the contest was a special subsection of their website <a href="http://www.idwholesaler.com/lanyard-design-contest/" target="_blank">devoted to the lanyard contest</a>. These pages informed contestants of the rules of the contest and its prizes, and allowed visitors to vote on their favorite submissions. It also encouraged visitors to follow the design contest on Facebook and Twitter, and to share a keyword-rich link using the AddThis widget. Every artist who submitted an entry was given a &#8220;badge&#8221; to include on their own website with optimized keyword text links back to IDWholesaler.com.</p>
<div id="attachment_1679" class="wp-caption aligncenter" style="width: 545px"><img class="size-full wp-image-1679" title="Lanyard Contest Facebook Page" src="http://www.doubleplus.com/wp-content/idwfacebook.jpg" alt="Lanyard Contest Facebook Page" width="535" height="594" /><p class="wp-caption-text">Lanyard Contest Facebook Page</p></div>
<p>Of course, many crafters love to blog and participate in online forums as well, so the contest spread like wildfire, with the participants blogging about their progress and sharing the contest with fellow artisans. In the end, IDWholesaler received 70 entries and over 3600 votes. But the whopper numbers are the SEO-related ones &#8211; they received an 8% increase in inbound links, and a 43% lift in non-paid traffic related to the term &#8220;lanyard&#8221;.</p>
<p>So for those of you looking for creative ways to spread the word about less-then-exciting products, think outside the box like IDWholesaler did in this contest.</p>
<p>Special thanks to Kate at IDWholesaler.com for bring sharing the results of this campaign with us!</p>
<div class="shr-publisher-1671"></div>]]></content:encoded>
			<wfw:commentRss>http://www.doubleplus.com/viral-marketing-b2b-stores.html/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>What Your Customer Service Email Says About Your Business</title>
		<link>http://www.doubleplus.com/customer-service-emails.html</link>
		<comments>http://www.doubleplus.com/customer-service-emails.html#comments</comments>
		<pubDate>Thu, 21 Jul 2011 15:50:40 +0000</pubDate>
		<dc:creator>Susan Petracco</dc:creator>
				<category><![CDATA[Business Practices]]></category>
		<category><![CDATA[customer service]]></category>
		<category><![CDATA[emails]]></category>
		<category><![CDATA[personalization]]></category>

		<guid isPermaLink="false">http://www.doubleplus.com/?p=1658</guid>
		<description><![CDATA[Shoppers have come to expect the human touch almost as much online as they do when they visit a store in person at their local mall. Given this expectation, let's discuss how you can optimize customer service emails to create a stronger relationship with your customers.]]></description>
			<content:encoded><![CDATA[<div id="attachment_1665" class="wp-caption alignleft" style="width: 300px"><img class="size-full wp-image-1665" title="Customer Service Emails" src="http://www.doubleplus.com/wp-content/10emailmistakes1.jpg" alt="Customer Service Emails" width="290" height="190" /><p class="wp-caption-text">Customer Service Emails</p></div>
<p>As e-commerce businesses, we have a variety of reasons to email our customers. These emails include order confirmations, shipping notifications, customer service response emails, marketing emails, and much more. In this post, I want to focus primarily on customer service<span style="white-space: pre;"> </span> emails. Shoppers have come to expect the human touch almost as much online as they do when they visit a store in person at their local mall. &lt;!&#8211;more&#8211;&gt;Given this expectation, let&#8217;s discuss how you can optimize customer service emails to create a stronger relationship with your customers.</p>
<h3>Email Addresses</h3>
<p>When you contact a customer via email, what email address do you use? Have you considered the impressions that you give simply based on your email address? In my opinion, the following is a best-to-worst ordered list of email addresses used by e-commerce companies.</p>
<ul>
<li><strong>susan@mystore.com</strong> &#8211; Using the name of a person, whether it&#8217;s a customer service rep of a major brand or the owner of a part-time hobby business, gives customers the impression that there&#8217;s a dedicated person willing to help them complete a purchase and support them after the sale. You can use full names or, for privacy purposes, shorten it to first names or first-name-and-last-initial. This kind of email address allows customers to create a mental image of the person behind the keyboard, and is the best way to create a relationship between the customer and your store.</li>
<li><strong>customerservice@mystore.com</strong> &#8211; Any variation on support or service indicates that you at least have a dedicated email account for helping customers with any issues they may have. It might be monitored by one person or many, but there&#8217;s the idea of a dedicated department willing to handle the customer&#8217;s questions or problems.</li>
<li><strong>sales@mystore.com</strong> &#8211; This is my least favorite kind of email address &#8211; another variation is orders@mystore.com. This gives customers the impression that the store&#8217;s main focus is on income and sales. And of course it is, otherwise you wouldn&#8217;t be in business &#8211; but a customer wants to feel like THEIR business, and therefore their experience, is your primary objective. Not your overall profit and loss statement.</li>
</ul>
<h3>Email Content</h3>
<p>The obvious goal your customer service email should have is to answer the customer&#8217;s question or address their issue. Beyond that, you can do much more to strengthen the sense of a relationship that your customer perceives by doing the following:</p>
<ol>
<li>First of all, address all responses with the customer&#8217;s name, just like you do on formal correspondence. Your policy might be to use the customer&#8217;s first name, or to address a customer as Mr. or Ms. Lastname, but be consistent.</li>
<li>Restate their question or concern in your own words, so that it&#8217;s clear that you have read their email and aren&#8217;t an automated software bot guessing at an answer.</li>
<li>Then offer the solution or answer.</li>
<li>Finally, sign your name and let the customer know they can respond to the email to contact the same person again. Even better, offer a direct phone number or extension they can use if they would like to continue the discussion by phone.</li>
</ol>
<p>If the response leads to a sale, provide the &#8220;wow factor&#8221; by having the CSR sign his or her name and a short &#8220;thank you&#8221; on the packing slip or as an insert in the box.</p>
<h3>Is a Helpdesk OK?</h3>
<p>What if your communications require a CRM or helpdesk type of solution?</p>
<p>That&#8217;s understandable. Even if customers can tell the email comes from a piece of software, it&#8217;s  still better than no response at all! If your volume of correspondence requires this kind of software, just make sure to optimize your emails and CSR accounts to keep them as personalized as possible. And if you use canned responses, at least make sure to sign them with a real person&#8217;s name.</p>
<div class="shr-publisher-1658"></div>]]></content:encoded>
			<wfw:commentRss>http://www.doubleplus.com/customer-service-emails.html/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>How Bad Experiences Outweigh Good Ones</title>
		<link>http://www.doubleplus.com/how-bad-experiences-outweigh-good-ones.html</link>
		<comments>http://www.doubleplus.com/how-bad-experiences-outweigh-good-ones.html#comments</comments>
		<pubDate>Fri, 01 Jul 2011 21:30:55 +0000</pubDate>
		<dc:creator>Susan Petracco</dc:creator>
				<category><![CDATA[Business Practices]]></category>

		<guid isPermaLink="false">http://www.doubleplus.com/?p=1618</guid>
		<description><![CDATA[We’re a community of “glass is half empty” kind of shoppers. I was watching an old rerun of “The Big Bang Theory” Friday night, where Sheldon described himself as being a person of infinite patience, having once waited for two-and-a-half hours on the customer support line with Hewlitt Packard just to complain about their customer support. That's our collective voice in a nutshell.]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft" title="Bad Customer Service" src="http://www.doubleplus.com/wp-content/thumbs/scream.jpg" alt="Bad Customer Service" width="120" height="120" />We&#8217;re a community of &#8220;glass is half empty&#8221; kind of shoppers.</p>
<div class="zemanta-img zemanta-action-dragged" style="margin: 1em; display: block;">
<div class="wp-caption alignright" style="width: 111px"><a href="http://www.daylife.com/image/00M20Ibfa3853?utm_source=zemanta&amp;utm_medium=p&amp;utm_content=00M20Ibfa3853&amp;utm_campaign=z1"><img title="BEVERLY HILLS, CA - JANUARY 16:  Actor Jim Par..." src="http://cache.daylife.com/imageserve/00M20Ibfa3853/101x150.jpg" alt="BEVERLY HILLS, CA - JANUARY 16:  Actor Jim Par..." width="101" height="150" /></a><p class="wp-caption-text">Image by Getty Images via @daylife</p></div>
</div>
<p>I was watching an old rerun of &#8220;The Big Bang Theory&#8221; Friday night, where Sheldon described himself as being a person of infinite patience, having once waited for two-and-a-half hours on the customer support line with Hewlitt Packard just to complain about their customer support. That&#8217;s our collective voice in a nutshell.<br />
<span id="more-1618"></span></p>
<p>As social media has continued to grow, the venues people have for making their voices heard is much wider than before. And people like to complain about bad customer service. Personally, I&#8217;ve made myself a nuisance a couple of times. Once was on Facebook, after RueLaLa.com sent me the wrong pair of sunglasses and refused to give me credit for them. So I let their community know what had happened via their Facebook page wall. I ended up with a refund and a $10 credit&#8230;<strong>but I&#8217;ve placed three more orders with them since then</strong>.</p>
<div class="wp-caption alignleft" style="width: 160px"><a title="Share photos on twitter with Twitpic" href="http://twitpic.com/5f93i5"><img title="Operating System Not Found?" src="http://twitpic.com/show/thumb/5f93i5.jpg" alt="Operating System Not Found?" width="150" height="150" /></a><p class="wp-caption-text">Operating System Not Found?</p></div>
<p>Last week I posted a picture on TwitPic.com showing my laptop, black screen and big white typewriter letters reading &#8220;Operating System Not Found&#8221;. I tagged it #DellFail. I later got an @-reply back from Dell&#8217;s customer service team asking me to call in. (The fact that I&#8217;m not going to has to do with previous bad customer service experiences with that company.)</p>
<div>
<dl></dl>
</div>
<p>So all this isn&#8217;t to show how nit-pickingly annoying I can be as a customer. But I wanted to point out how a single failure to make someone happy can cost your business credibility. <strong>The problem is that good experiences don&#8217;t get shared nearly as often.</strong> In fact, you have to make excellent customer service a cornerstone of your business, like Zappos does, in order to get noticed for it.</p>
<p>Does this mean you have to go to Zappos&#8217; lengths and offer 365-day returns and free return shipping? No. Most stores can&#8217;t afford that. It does mean the following.</p>
<p>1. Your customer service team needs to be NICE. Professional, helpful, and courteous.</p>
<p>2. If a customer request is outside your policies, explain that to them and if at all possible, offer an alternative solution. Even better, if the request isn&#8217;t unreasonable, go ahead and let it slide.</p>
<p>3. Be available during business hours by phone, email, and on-site chat. Nothing irritates people more than answering machines and &#8220;no one available&#8221; chat status messages. (OK, maybe overseas call centers and a static-y connection.)</p>
<p>4. Ask customers to tell their friends if they&#8217;ve had exceptional service from your store. It&#8217;s ok to beg a little!</p>
<p>5. Try to let the bad experiences become water under the bridge. Some people cannot be satisfied. When you get one of those, don&#8217;t get irritated and let it affect your feelings with other customers. Keep your standards up.</p>
<p><strong>What challenges have you faced when dealing with customer service issues? Tell your stories in the comments below.</strong></p>
<div class="shr-publisher-1618"></div>]]></content:encoded>
			<wfw:commentRss>http://www.doubleplus.com/how-bad-experiences-outweigh-good-ones.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Product Data Feed Best Practices</title>
		<link>http://www.doubleplus.com/product-data-feeds-best-practices.html</link>
		<comments>http://www.doubleplus.com/product-data-feeds-best-practices.html#comments</comments>
		<pubDate>Mon, 20 Jun 2011 13:00:17 +0000</pubDate>
		<dc:creator>Susan Petracco</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>

		<guid isPermaLink="false">http://www.doubleplus.com/?p=1567</guid>
		<description><![CDATA[Data feeds are an integral part of marketing an ecommerce site. A data feed is nothing more than a list of your products, along with certain product details, in a structured format. The details included in the file depend on your site needs and the requirements of the partner to whom you&#8217;re submitting your data. [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.doubleplus.com/wp-content/bullseye_no_bg.png"><img src="http://www.doubleplus.com/wp-content/bullseye_no_bg.png" alt="Product Data Feeds Best Practices" title="Product Data Feeds Best Practices" width="260" height="210" class="alignleft size-full wp-image-1610" /></a></p>
<p>Data feeds are an integral part of marketing an ecommerce site. A data feed is nothing more than a list of your products, along with certain product details, in a structured format. The details included in the file depend on your site needs and the requirements of the partner to whom you&#8217;re submitting your data. <span id="more-1567"></span>The same is true of the data structure &#8211; some partners may want a tab-delimited text file (where there&#8217;s a tab character between each piece of data), while others may require XML.</p>
<p>Data feeds are used in a number of ways. Internally you may wish to use datafeeds to share product information across multiple systems or different websites. External to your company, you can use data feeds to share product information with <a href="http://www.doubleplus.com/comparison-shopping-engines.html">comparison shopping engines</a>, affiliate programs, and online marketplaces.</p>
<h2>Where Can You Market Using Your Data Feed?</h2>
<p><strong>1. Comparison Shopping Engines</strong> &#8211; I discussed comparison shopping engines in my last post, but for convenience I&#8217;ll describe them again here. These are sites such as PriceGrabber.com or Nextag.com where consumers can search or browse for specific products and then compare prices (including shipping and sales tax) as well as reviews of different stores that sell those products.</p>
<p><strong>2. Affiliate Programs</strong> &#8211; An affiliate program is where you provide product data, creative banners, or both to other marketers, who then advertise your store in exchange for a commission on given sales. This is called a Pay-Per-Sale affiliate program because the affiliate earns their commission whenever a sale is made at your store. (There are also Pay-Per-Click and Pay-Per-Lead programs, but these are much less common for e-commerce stores than Pay-Per-Sale.) Some merchants run their own affiliate program, but many use networks such as <a href="http://www.shareasale.com/" target="_blank">ShareASale</a> or <a href="http://www.shareasale.com/">Commission Junction.</a></p>
<p><strong>3. Online Marketplaces</strong> &#8211; The best-known example of an online marketplace is Amazon, where third-party retailers can advertise AND sell their products directly on Amazon&#8217;s website. Amazon handles the transaction, collects the money from the customer, takes a commission, and then pays you the balance. Traffic is not sent to your online store in this method. Other larger retailers have begun exploring marketplaces, including <a href="http://www.adweek.com/news/technology/walmart-launches-online-marketplace-100250" target="_blank">Wal-Mart</a> and <a href="http://articles.chicagotribune.com/2010-01-08/news/1001080200_1_fund-manager-edward-lampert-sears-holdings-sears-spokesman-chris-brathwaite" target="_blank">Sears</a>. The other popular pure-play Internet online marketplace is Shop.com.</p>
<h2>Best Practices for Product Data Feeds</h2>
<p>There are several things to focus on getting right when marketing your products by a data feed.</p>
<p><strong>1. Product Descriptions</strong>: The most important, assuming you&#8217;re <a href="http://www.doubleplus.com/adding-more-content-product-pages.html">hand-writing your own product descriptions</a> is to not use your optimized product copy anywhere other than your own site. Keep some canned copy in a separate field in your store&#8217;s database for use in distributing to other websites. That way Google doesn&#8217;t have a chance of indexing their pages higher than yours for your optimized descriptions.</p>
<p><strong>2. Keywords</strong>: Add any major search terms in your product name, including the brand, if possible. Different websites use different fields when searching, but all of them allow searching on the product name.</p>
<p><strong>3. Product Identifiers</strong>: Include major product identifiers so that your product gets grouped with the same product from other sites. This includes, if available, the manufacturer/brand, the manufacturer part number, and the UPC (or EAN or similar international codes). Google Product Feed now requires at least two of these three fields. Also make sure they are right! Wrong UPC codes can cause extreme problems on Amazon, in particular.</p>
<p><strong>4. Categorization</strong>: <a href="http://www.doubleplus.com/managing-large-scale-category-structures.html">Categorize your products</a> as best you can on each shopping engine. This drives more traffic from shoppers who are browsing, rather than searching for a specific product.</p>
<p><strong>5. Keep it Fresh</strong>: At a minimum, update your feeds every 30 days or whenever you add or remove products. If you track online inventory, update it as often as is convenient, and don&#8217;t include out-of-stock products unless you accept backorders. That way you don&#8217;t pay click fees for products you can&#8217;t sell.</p>
<p><strong>6. Track Your Links</strong>: Tag your links for each channel so that your analytics packages can tell you what shopping engines and which products are doing the best job of converting clicks into sales. Feed management software such as our <a href="http://www.feedexact.com">FeedExact</a> tool will provide you with this data without the need to manually tag your own links.</p>
<div class="shr-publisher-1567"></div>]]></content:encoded>
			<wfw:commentRss>http://www.doubleplus.com/product-data-feeds-best-practices.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Comparison Shopping Engines</title>
		<link>http://www.doubleplus.com/comparison-shopping-engines.html</link>
		<comments>http://www.doubleplus.com/comparison-shopping-engines.html#comments</comments>
		<pubDate>Tue, 31 May 2011 15:00:58 +0000</pubDate>
		<dc:creator>Susan Petracco</dc:creator>
				<category><![CDATA[Marketing]]></category>

		<guid isPermaLink="false">http://www.doubleplus.com/?p=1576</guid>
		<description><![CDATA[Comparison Shopping Engines, or CSEs, have grown in popularity and number over the past decade. They represent a large marketing opportunity for online merchants. These sites take submitted product data feeds from many merchants, match up the products offered by each store, and allow customers to compare prices across the various stores. In addition to [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_1581" class="wp-caption alignleft" style="width: 160px"><img src="http://www.doubleplus.com/wp-content/compare.jpg" alt="Comparison Shopping Engines" title="Comparison Shopping Engines" width="150" height="158" class="size-full wp-image-1581" /><p class="wp-caption-text">Comparison Shopping Engines</p></div>
<p>Comparison Shopping Engines, or CSEs, have grown in popularity and number over the past decade. They represent a large marketing opportunity for online merchants. These sites take submitted product data feeds from many merchants, match up the products offered by each store, and allow customers to compare prices across the various stores. <span id="more-1576"></span> In addition to comparing base prices, often customers can also enter their shipping address and then compare the total price including shipping and sales tax.</p>
<p>In exchange for sending targeted traffic to a merchant&#8217;s website, the merchant pays certain fees to the CSE. There may be a flat cost-per-click depending on the category of items you sell. Other CSEs having a bidding tool that lets merchants choose how much they are willing to pay for each click, and they rank merchants based on their bids, highest to lowest.</p>
<p>For many shoppers, Comparison Shopping Engines are the first place they visit to check prices. Given our current economic situation, bargain hunting is becoming more and more prevalent, especially online &#8211; where people can compare prices without spending any money in gas. For this reason alone, CSEs now drive 15% of online sales (<em>source <a href="http://www.practicalecommerce.com/articles/2194-Comparison-Shopping-Engines-Strategies-for-Smaller-Merchants" target="_blank">Practical Ecommerce</a></em>).</p>
<h2>Value-Added Services</h2>
<p>CSEs also provide retailers with additional value-added services. The most common example is customer reviews submitted by people who complete an order at a given store. These reviews including a rating (usually 1 star for the lowest rating, and 5 stars for the highest) and a textual review where customers describe their shopping experience with the store. In addition to comparing prices, shoppers can also compare the overall store ratings that previous customers have provided. Individual reviews allow shoppers to see what other customers liked or hated about a particular store, for instance, the customer service was great but the shipping rates were too high.</p>
<p>Conversion analytics are often provided by CSEs to merchants who use them, via a bit of JavaScript that is included on the conversion or receipt page. This helps merchants determine their ROI (return on investment) for the money that they spend with the CSEs.</p>
<h2>Getting Start with CSEs</h2>
<p>If you&#8217;re looking to get started with comparison shopping engines, take a look at the biggest ones on the market:</p>
<ul>
<li>Google Shopping</li>
<li>NexTag</li>
<li>Pricegrabber</li>
<li>Shopzilla</li>
<li>Shopping.com</li>
</ul>
<p>Beginners may also want to focus on free CSEs, including Google Shopping, Bing Shopping, and TheFind.com.</p>
<div class="shr-publisher-1576"></div>]]></content:encoded>
			<wfw:commentRss>http://www.doubleplus.com/comparison-shopping-engines.html/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>How to Use Video to Boost Visits and SEO</title>
		<link>http://www.doubleplus.com/how-to-use-video-to-boost-visits-and-seo.html</link>
		<comments>http://www.doubleplus.com/how-to-use-video-to-boost-visits-and-seo.html#comments</comments>
		<pubDate>Fri, 13 May 2011 15:14:05 +0000</pubDate>
		<dc:creator>Susan Petracco</dc:creator>
				<category><![CDATA[Site Design]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://www.doubleplus.com/?p=1510</guid>
		<description><![CDATA[Not a lot of small ecommerce sites use video yet. It&#8217;s a shame, because video has promoted sales for larger retailers, and bloggers big and small already know the draw of video-based content. Videos can engage customers, drive additional traffic from other channels, and even boost your SEO rankings. It&#8217;s also easy to make &#8211; [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.doubleplus.com/wp-content/vidcam.jpg"><img class="alignleft size-full wp-image-1520" title="Video Camera" src="http://www.doubleplus.com/wp-content/vidcam.jpg" alt="Video Camera" width="200" height="150" /></a>Not a lot of small ecommerce sites use video yet. It&#8217;s a shame, because video has promoted sales for larger retailers, and bloggers big and small already know the draw of video-based content. Videos can engage customers, drive additional traffic from other channels, and even boost your SEO rankings. <span id="more-1510"></span>It&#8217;s also easy to make &#8211; you don&#8217;t have to have professionally-produced videos, just professional content. All you need is a digital video camera, a <a href="http://video-editing-software-review.toptenreviews.com/" target="_blank">video editing software package</a>, and the time and patience to produce the video.</p>
<h2>The Benefits</h2>
<h3>Engaging Customers</h3>
<p>Videos engage customers by giving them something new to &#8220;do&#8221; on your website. People are different &#8211; some (like me) prefer to read text and look at pictures, but others like the more real-world feel of a video that shows people using or demonstrating the product. Zappos.com is one of my favorite sites because of the way they accomplish this well. The videos are simple, with an employee demonstrating the features of the product (shot against a white wall background), but they are very engaging because they get to the point. Take a look at almost any product on the site, such as this <a href="http://www.zappos.com/tyler-rodan-odyssey-satchel-sand?zlfid=111" target="_blank">Tyler Rodan bag</a>, and click the &#8220;LARGER IMAGE &amp; ADDITIONAL VIEWS&#8221; link to see the product video.</p>
<h3>Driving Customers from New Channels</h3>
<p>Videos can also be distributed to other channels on the web and used to drive new customers. Creating a YouTube channel for your videos will help define your brand, and as your channel gains subscribers, you&#8217;ll get more visibility to your channel and eventually to your own website. Facebook is another great place to publish videos, especially if you already have a fan page. Facebook makes it easy to upload videos from your computer in both regular and HD formats.</p>
<h3>The SEO Benefit</h3>
<p>How are videos good for SEO? The main reason is that they lower your bounce rate and increase the time a visitor spends on your website. If Google notices someone search for &#8220;widgets&#8221;, click to your site, and immediate come back to &#8220;Google&#8221; and search again for &#8220;widgets&#8221;, it contributes to LOWERING your site&#8217;s ability to rank well for the term &#8220;widgets&#8221;. A video entices the visitor to spend more time on your site. So even if they do leave without seeing another page, they don&#8217;t do it quite so quickly.</p>
<h2>The Content</h2>
<p>One of the challenges you might face is what to shoot a video <em>about</em>.</p>
<h3>Product Demonstrations</h3>
<p>We&#8217;ve already discussed how Zappos uses videos to demonstrate the features of its products. <a href="http://www.simplypiste.com/products/Dakine/Nomad-BlueChecks.aspx" target="_blank">SimplyPiste</a> is another example of a company filming a person showing the features of the products. Another example is Fat Brain Toys, who includes both a product demonstration and a ABC News coverage video for their product <a href="http://www.fatbraintoys.com/toy_companies/fat_brain_toy_co/reptangles.cfm?display=video" target="_blank">Reptangles</a>.<br />
<iframe width="425" height="349" src="http://www.youtube.com/embed/VQunJLb3-vY" frameborder="0" allowfullscreen></iframe></p>
<h3>Company Culture</h3>
<p>OK, not to beat a dead horse or anything, but Zappos also has a great <a href="http://www.youtube.com/zappos" target="_blank">YouTube channel</a> where, instead of product videos, they show humorous videos that bring their unique corporate culture to the eyes of millions. Titles range from &#8220;FUNNY JUSTIN BIEBER PARODY!!!&#8221; to &#8220;Beard Gang!!! VERY FUNNY!&#8221;. But in addition to the funny videos, they also have clips from the Rachael Ray show and CBS Sunday Morning when they had coverage of Zappos.<br />
<iframe width="560" height="349" src="http://www.youtube.com/embed/Pjpo_KkplKg" frameborder="0" allowfullscreen></iframe></p>
<h3>Wacky and Weird</h3>
<p>BlendTec is infamous for the way it has driven traffic to its store from a second website called <a href="http://willitblend.com/" target="_blank">Will It Blend?</a> BlendTec bought a domain name and a bunch of stuff you don&#8217;t normally put into a blender, and created videos of employees testing whether these items could be blended in a BlendTec blender. They&#8217;ve blended everything from the dreaded Vuvuzela to an (at the time) hard-to-get iPad. The videos are crazy and entertaining, and BlendTec has gotten a ton of press coverage for their antics.<br />
<iframe width="560" height="349" src="http://www.youtube.com/embed/USiaeXzYkOE" frameborder="0" allowfullscreen></iframe></p>
<div class="shr-publisher-1510"></div>]]></content:encoded>
			<wfw:commentRss>http://www.doubleplus.com/how-to-use-video-to-boost-visits-and-seo.html/feed</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>Product Images and Zoom Features</title>
		<link>http://www.doubleplus.com/product-photography-and-image-display.html</link>
		<comments>http://www.doubleplus.com/product-photography-and-image-display.html#comments</comments>
		<pubDate>Wed, 11 May 2011 15:15:03 +0000</pubDate>
		<dc:creator>Susan Petracco</dc:creator>
				<category><![CDATA[Site Design]]></category>
		<category><![CDATA[multiple images]]></category>
		<category><![CDATA[product photography]]></category>

		<guid isPermaLink="false">http://new.doubleplus.com/ecommerce-business-considerations/product-photography-and-image-display.html</guid>
		<description><![CDATA[Great product images are a major key to success for any e-commerce store. A website has to do its best to replace a customer&#8217;s ability to see and touch the physical items like they would at the store. Many manufacturers will provide high-quality images, suitable for us in a product catalog. These can be easily [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-1491" title="Product Photography Zoom" src="http://www.doubleplus.com/wp-content/product-photography-zoom.jpg" alt="Product Photography and Zoom" width="290" height="200" /></p>
<p>Great product images are a major key to success for any e-commerce store. A website has to do its best to replace a customer&#8217;s ability to see and touch the physical items like they would at the store.<span id="more-14"></span></p>
<p>Many manufacturers will provide high-quality images, suitable for us in a product catalog. These can be easily resized in suitable image editing software, such as Adobe Photoshop, to provide multiple sizes for regular and zoom images. However, your site may benefit from professional and unique photographs of the items you carry.</p>
<p>Consider the website <a href="http://www.madcattoys.com" target="_blank">Mad Cat Toys</a>, which sells collectible and retro toys suitable for collectors as well as children. The site has won several prestigious design awards, and one of the reasons for its appeal is the uniform look of the product photography. The products are photographed on a white background with a subtle shadow that gives the item dimension. If this site were to use stock images from various manufactures, the effect would be much more hodge-podge than it has now.</p>
<p><a href="http://www.doubleplus.com/wp-content/madcattoys.jpg"><img class="aligncenter size-full wp-image-1506" title="Custom Product Photography" src="http://www.doubleplus.com/wp-content/madcattoys.jpg" alt="Custom Product Photography" width="660" height="365" /></a></p>
<p>Even if you use stock images, though, there are several ways you can use product photography to entice customers to place an order.</p>
<h1>1. Show Large, Detailed Images</h1>
<p>Most site designs don&#8217;t allow for large, detailed images, even on the product detail pages.</p>
<p>However, larger images give customers the ability to see texture and fine details they might miss otherwise. They keep customers from having to guess about certain details of the product. There are several great ways to display larger images to customers. The oldest, simplest way is to open a larger image in a popup window. However, this doesn&#8217;t have the flair of modern websites, and has usability problems with pop-up blockers.</p>
<p>The lightbox method is popular now too, especially for sites already running jQuery or Prototype libraries. A lightbox opens in a div element on the same page, usually dimming out the contents of the actual page behind the image. One library I particular like is called <a href="http://colorpowered.com/colorbox/" target="_blank">ColorBox</a>, a jQuery plug-in. If you don&#8217;t know what a lightbox is, take a look at the examples on the ColorBox website. Chances are, you&#8217;ve seen a lightbox in use on many sites.</p>
<p><img class="aligncenter size-full wp-image-1499" title="Lightbox" src="http://www.doubleplus.com/wp-content/lightbox.jpg" alt="Lightbox" width="660" height="470" /></p>
<p>Another method is to use a rollover zoom. If I recall correctly, I first saw this on the Rue La La website, one of my favorite daily distractions (and why you can&#8217;t usually reach me on the phone at 11:15am!)  I usually use the <a href="http://www.magictoolbox.com/magiczoomplus/" target="_blank">MagicZoomPlus</a> script to set this up, and if you visit their site you can see the many different ways this can be implemented. The concept is that the zoomed image opens in a div element that lies on top of other content of the page, but is small enough so that it only shows a bit of the zoomed image at any given time. As you move your mouse over the regularly-sized image, the zoomed image moves around inside its box.</p>
<p><img class="aligncenter size-full wp-image-1497" title="Rue La La Product Zoom" src="http://www.doubleplus.com/wp-content/ruezoom.jpg" alt="Rue La La Product Zoom" width="660" height="339" /></p>
<h1>2. Alternate Product Images</h1>
<p>Multiple images are also useful. Consider the following ways that multiple product images help the buying decision:</p>
<ul>
<li>Show the product from different angles</li>
<li>Show details of the product, such as the contents of a boxed item or the label on designer clothing (you&#8217;ll often see this on Ebay)</li>
<li>Show an item of clothing or footwear on a model</li>
<li>Display the item in use, such as a piece of sports equipment being used in a game</li>
</ul>
<p>Multiple images are most commonly seen on the product detail page. The screenshot below is from Zappos, which not only shows several images, but also incorporates a video.</p>
<p><img class="aligncenter size-full wp-image-1501" title="Multiple Images on Product Detail Page" src="http://www.doubleplus.com/wp-content/multipledetail.jpg" alt="Multiple Images on Product Detail Page" width="660" height="514" /></p>
<p>However, Lands End does a terrific job of using mouseovers to show the back of an item of apparel when rolling over the product image. In this screenshot, t7The normal view shows the front of each swimsuit, but when you mouseover a product it changes to show the back of the swimsuit.</p>
<p><a href="http://www.doubleplus.com/wp-content/multiplecategory.jpg"><img class="aligncenter size-full wp-image-1502" title="Multiple Images on Product Detail Page" src="http://www.doubleplus.com/wp-content/multiplecategory.jpg" alt="Multiple Images on Product Detail Page" width="660" height="421" /></a></p>
<p>In the real world, a picture is worth a thousand words, but on an e-commerce site, a picture could be worth a thousand dollars.</p>
<p>What other creative uses of product photography have you seen? Let me know in the comments below.</p>
<div class="shr-publisher-14"></div>]]></content:encoded>
			<wfw:commentRss>http://www.doubleplus.com/product-photography-and-image-display.html/feed</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Idiot-Proofing Your Store</title>
		<link>http://www.doubleplus.com/idiot-proofing-your-store.html</link>
		<comments>http://www.doubleplus.com/idiot-proofing-your-store.html#comments</comments>
		<pubDate>Mon, 09 May 2011 16:15:24 +0000</pubDate>
		<dc:creator>Susan Petracco</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Testing]]></category>

		<guid isPermaLink="false">http://www.doubleplus.com/?p=1469</guid>
		<description><![CDATA[I&#8217;m sure you know the old saying: &#8220;If you make something idiot-proof, the world will just build a better idiot&#8221;. Unfortunately it&#8217;s downright, 100% true, and I&#8217;d bet $5 that your store isn&#8217;t as idiot-proof as you think it is. The problem is that we&#8217;re so close to our own stores, or those we develop [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-1478" title="idiot" src="http://www.doubleplus.com/wp-content/idiot.jpg" alt="" width="200" height="270" />I&#8217;m sure you know the old saying: &#8220;If you make something idiot-proof, the world will just build a better idiot&#8221;. Unfortunately it&#8217;s downright, 100% true, and I&#8217;d bet $5 that your store isn&#8217;t as idiot-proof as you think it is.<span id="more-1469"></span></p>
<p>The problem is that we&#8217;re so close to our own stores, or those we develop for regularly, that sometimes we get to used to taking certain steps to think about what someone might do when visiting for the first time. We take all the steps an expert customer would take, instead of looking at the site with a fresh pair of eyes.</p>
<p><br class="clearall" /></p>
<p>What happens when you make a new change to your store? You test it, right? You browse to a product and then:</p>
<ol>
<li>select the options (size and color, perhaps)</li>
<li>put the product in your cart</li>
<li>go to checkout</li>
<li>enter your real address, phone number, and email</li>
<li>choose a valid shipping method</li>
<li>enter valid payment details</li>
<li>process your order</li>
</ol>
<p>Something along those lines? Do you think that&#8217;s what your customer does? Probably not&#8230;at least not the idiots! You should test-shop your store as if you&#8217;re an idiot. (You might also get one of your ditzier friends to shop and look over his or her shoulder!)</p>
<h1>Product Pages</h1>
<p>Go to your product pages, and try putting the product into your shopping cart without selecting the required attributes, such as color and size. Do you see a helpful error message, or just an error? Or does it go into the cart just fine, leaving your customer service reps to try to contact the customer to see which color and size she needed?</p>
<p>If there are quantity limits &#8211; a maximum, minimum, or a certain multiple that the product must be ordered in, can your shopping cart handle that? Test putting in invalid quantities and see what happens.</p>
<p>Even after you successfully put a product into your shopping cart, do you know what to do? If you&#8217;re taken to the shopping cart, is it easy to get back to where you were, preferably in a single click? If you stay on the product or category pages, is there a message saying that the item was successfully added? Don&#8217;t expect your idiots to keep an eye on your perpetual &#8220;mini-cart&#8221; to notice that the item was added.</p>
<h1>View Cart Page</h1>
<p>First of all, make sure a few things are true on your cart page:</p>
<ol>
<li>Customers can click the product name or image (or both) to go back to the product and check the details again</li>
<li>Customers can remove products from their shopping cart</li>
<li>Customers can change the quantity of the product being purchased</li>
</ol>
<p>Assuming these are all true, make sure that the links back to the product pages work properly; it&#8217;s an easy thing to overlook. Remove some products from your cart and make sure this functions properly. Change the quantity &#8211; and try invalid numbers like zero or a negative value &#8211; and make sure the error messages are user friendly.</p>
<h1>Checking Out</h1>
<p>The <a href="http://www.doubleplus.com/improving-your-checkout-process.html">checkout process</a> is really where things get complicated. First of all, enter as many invalid address combinations that you can think of. Start with your own address, but change the state so that it doesn&#8217;t match the zipcode. Then go further into checkout and see if you can get shipping rates. If not, is there an error message telling the user to double-check that they&#8217;ve entered a valid shipping address? Even better, try adding an <a href="http://www.accuratetax.com/products/address-validation/" target="_blank">address validator</a> to your website to scrub addresses right after the customer enters them.</p>
<p>Review your shipping methods &#8211; can international customers select domestic shipping methods to get cheaper shipping? If so, you might be losing money and not noticing it. If you offer free pricing within a certain area, are other customers able to see that? Do you have any reminders (&#8220;Your Order Qualifies for Free Shipping!&#8221;) that are shown to everyone instead of being limited to only those customers who can take advantage of it?</p>
<p>On to the payment processing &#8211; what happens if the customer enters a bogus credit card number? What if they enter a test number, such as 4111-1111-1111-1111 for Visa? Do they see an error message if the card is expired? Does the shopping cart force them to enter their CVV code (if you want them to)?</p>
<p>Finally, go all the way to the receipt page after having entered an improperly-formatted email address (such as &#8220;someone@yahoo&#8221; &#8211; notice the lack of &#8220;.com&#8221; at the end). Are there any ugly error messages that pop up?</p>
<p>Really, no matter how much you fix things, you&#8217;ll eventually get the idiot who calls your service center and asks where the &#8220;any&#8221; key is. But hitting the majority of problems will save your customers &#8211; and your employees &#8211; a lot of headaches.</p>
<div class="shr-publisher-1469"></div>]]></content:encoded>
			<wfw:commentRss>http://www.doubleplus.com/idiot-proofing-your-store.html/feed</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
	</channel>
</rss>

