<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/atom10full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><feed xmlns="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:thr="http://purl.org/syndication/thread/1.0" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">
    <title>Comparison Shopping Engine Strategies</title>
    
    <link rel="alternate" type="text/html" href="http://www.csestrategies.com/cse/" />
    <id>tag:typepad.com,2003:weblog-546584</id>
    <updated>2011-12-14T09:57:54-08:00</updated>
    <subtitle>Retailer strategies for comparison shopping engines (CSEs) from Scot Wingo (CEO of ChannelAdvisor)</subtitle>
    <generator uri="http://www.typepad.com/">TypePad</generator>
    <atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/atom+xml" href="http://feeds.feedburner.com/ComparisonShoppingEngineStrategies" /><feedburner:info uri="comparisonshoppingenginestrategies" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId>ComparisonShoppingEngineStrategies</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><entry>
        <title>A Dose of Tips from The Feed Doctor</title>
        <link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ComparisonShoppingEngineStrategies/~3/v1gQ6IrSsRQ/a-dose-of-tips-from-the-feed-doctor.html" />
        <link rel="replies" type="text/html" href="http://www.csestrategies.com/cse/2011/12/a-dose-of-tips-from-the-feed-doctor.html" thr:count="0" />
        <id>tag:typepad.com,2003:post-6a00d8341d136453ef0154384b3c52970c</id>
        <published>2011-12-14T09:57:54-08:00</published>
        <updated>2011-12-14T09:57:54-08:00</updated>
        <summary>The Feed Doctor shares 3 tips to make your business rules run faster! </summary>
        <author>
            <name>Delisa Reavis</name>
        </author>
        
        
<content type="html" xml:lang="en-US" xml:base="http://www.csestrategies.com/cse/">&lt;div xmlns="http://www.w3.org/1999/xhtml"&gt;&lt;p&gt;Much of the wisdom of software development is expressed as wry---nay, even cynical---&lt;a href="http://en.wikipedia.org/wiki/Aphorism" target="_blank" title="Aphorism Definition"&gt;aphorisms&lt;/a&gt;. My favorite (attributed to &lt;a href="http://thinkexist.com/quotes/r._w._hamming/" target="_blank" title="Hamming Quote"&gt;Hamming&lt;/a&gt;) is: "Mathematicians stand on each other's shoulders while computer scientists stand on each other's toes." That one is merely descriptive, but the most important ones are prescriptive, like this one from &lt;a href="http://en.wikipedia.org/wiki/Program_optimization#cite_note-autogenerated268-1" target="_blank" title="Knuth Wikipedia"&gt;Knuth&lt;/a&gt;:&lt;/p&gt;&#xD;
&lt;p&gt;"Premature optimization is the root of all evil"&lt;/p&gt;&#xD;
&lt;p&gt;Programmers obsess over "optimization." Mostly they mean they want their programs to run faster, because everybody hates waiting. In case you haven't noticed, business rules ARE little programs, and as my gift to you, I'm going to give you 3 tips that could make your business rules run faster.&lt;/p&gt;&#xD;
&lt;p&gt;&lt;span style="font-size: 21px; font-weight: bold;"&gt;IF vs. SELECTCASE&lt;/span&gt;&lt;/p&gt;&#xD;
&lt;p&gt;Let's say you've got a rule that has three possible outputs:&lt;/p&gt;&#xD;
&lt;p&gt;1. If brand is "Acme," output "Free Overnight Shipping"&lt;br&gt;2. If brand is "X," output "Free Shipping"&lt;br&gt;3. Otherwise, output "See Site for Shipping Cost" &lt;/p&gt;&#xD;
&lt;p&gt;I usually advise people to use SELECTCASE when dealing with more than one condition, like this:&lt;/p&gt;&#xD;
&lt;p&gt;&lt;span style="font-family: arial, helvetica, sans-serif;"&gt;SELECTCASE($brand="Acme","Free Overnight Shipping",$brand="X","Free Shipping","See Site for Shipping Cost")&lt;/span&gt;&lt;/p&gt;&#xD;
&lt;p&gt;I think this looks cleaner than the alternative, using nested IFs:&lt;/p&gt;&#xD;
&lt;p&gt;&lt;span style="font-family: arial, helvetica, sans-serif;"&gt;IF($brand="Acme","Free Overnight Shipping",IF($brand="X","Free Shipping","See Site for Shipping Cost"))&lt;/span&gt;&lt;/p&gt;&#xD;
&lt;p&gt;These two rules have exactly the same output, and I assumed they took about the same time to run. I was surprised to find out that the 2nd rule is TEN TIMES faster! Here's the fundamental truth of "optimization:" it's always a trade-off. In this case you are trading clarity (first rule) for speed (2nd rule). Choose wisely!&lt;/p&gt;&#xD;
&lt;p&gt;&lt;span style="font-size: 21px; font-weight: bold;"&gt;IFBLANK vs ISINLIST&lt;/span&gt;&lt;/p&gt;&#xD;
&lt;p&gt;Here's a pattern I've seen a few times:&lt;/p&gt;&#xD;
&lt;p&gt;&lt;span style="font-family: arial, helvetica, sans-serif;"&gt;IF(ISINLIST("Some list",$brand),LOOKUP("Some list",$brand),"Default text")&lt;/span&gt;&lt;/p&gt;&#xD;
&lt;p&gt;This rule checks to see if brand (it could be any attribute, of course) is the left-hand or "name" column of a list. If so, the rule outputs the corresponding data from the right-hand or "value" column. Otherwise, it outputs some default text. This is perfectly fine. However, if ALL the entries in the list have a non-blank "value" column, the rule could be this:&lt;/p&gt;&#xD;
&lt;p&gt;&lt;span style="font-family: arial, helvetica, sans-serif;"&gt;IFBLANK(LOOKUP("Some list",$brand),"Default text")&lt;/span&gt;&lt;/p&gt;&#xD;
&lt;p&gt;The second rule is twice as fast! The reason is that the first rule ALWAYS looks up the value in the list TWICE, whereas the second rule only does it once. Now, again, there's a trade-off: if your list has blank entries in the "value" column, the rules are NOT the same.&lt;/p&gt;&#xD;
&lt;p&gt;&lt;span style="font-size: 21px; font-weight: bold;"&gt;Regular Expressions&lt;/span&gt;&lt;/p&gt;&#xD;
&lt;p&gt;Ah, who doesn't love a regex? (By the way, &lt;a href="http://regex.info/blog/2006-09-15/247" target="_blank" title="Regex Aphorism"&gt;here's another aphorism&lt;/a&gt; “Some people, when confronted with a problem, think ‘I know, I'll use regular expressions.’   Now they have two problems.’) However many problems you wind up with, you'll have this one at least: regexes can be SLOW. And given two regexes that do more-or-less the same thing, one could be MUCH slower than the other. For example, here are two rules that remove html tags from a description:&lt;/p&gt;&#xD;
&lt;p&gt;&lt;span style="font-family: arial, helvetica, sans-serif;"&gt;REGEXREPLACE($description,"&amp;lt;.+?&amp;gt;","")&lt;/span&gt;&lt;/p&gt;&#xD;
&lt;p&gt;&lt;span style="font-family: arial, helvetica, sans-serif;"&gt;REGEXREPLACE($description,"&amp;lt;[^&amp;gt;]+&amp;gt;","")&lt;/span&gt;&lt;/p&gt;&#xD;
&lt;p&gt;I won't go into the details of these; instead I will note that the second one is faster by about &lt;strong&gt;50%&lt;/strong&gt;. Be very careful with your regexes. Most of the tradeoff is in the time it takes you to write the thing; sometimes you have to be pretty clever.&lt;/p&gt;&#xD;
&lt;p&gt;There you go friends: 3 tips for faster rules. With all the time you save, you might be able to watch all 35 bowl games this year.&lt;/p&gt;&#xD;
&lt;p&gt;&lt;em&gt;Blog post by Anthony Alford, (a.k.a. The Feed Doctor), Technical Lead (Follow him on twitter @&lt;em&gt;&lt;a href="https://twitter.com/#!/TheFeedDoctor" target="_self" title="The Feed Doctor Twitter"&gt;TheFeedDoctor&lt;/a&gt;&lt;/em&gt;)&lt;/em&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/ComparisonShoppingEngineStrategies?a=v1gQ6IrSsRQ:_OqorWj4ECk:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/ComparisonShoppingEngineStrategies?i=v1gQ6IrSsRQ:_OqorWj4ECk:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/ComparisonShoppingEngineStrategies?a=v1gQ6IrSsRQ:_OqorWj4ECk:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/ComparisonShoppingEngineStrategies?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</content>


    <feedburner:origLink>http://www.csestrategies.com/cse/2011/12/a-dose-of-tips-from-the-feed-doctor.html</feedburner:origLink></entry>
    <entry>
        <title>Countdown to Cyber Monday: Daily Tip 4</title>
        <link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ComparisonShoppingEngineStrategies/~3/6sWuwJS6WHs/countdown-to-cyber-monday-daily-tip-4.html" />
        <link rel="replies" type="text/html" href="http://www.csestrategies.com/cse/2011/11/countdown-to-cyber-monday-daily-tip-4.html" thr:count="0" />
        <id>tag:typepad.com,2003:post-6a00d8341d136453ef0153933dbcca970b</id>
        <published>2011-11-18T12:08:18-08:00</published>
        <updated>2011-11-18T12:08:18-08:00</updated>
        <summary>We'll be putting out an e-commerce tip each day to share guidance that will help retailers throughout the holiday season.</summary>
        <author>
            <name>Delisa Reavis</name>
        </author>
        
        
<content type="html" xml:lang="en-US" xml:base="http://www.csestrategies.com/cse/">&lt;div xmlns="http://www.w3.org/1999/xhtml"&gt;&lt;div&gt;&#xD;
&lt;p&gt;In exactly one week, thousands will rise at ungodly hours, camp out and form store-wrapping lines to kick off the Cyber 5! And for online shoppers the dedication to deals is just as intense!&lt;/p&gt;&#xD;
&lt;p&gt;Make the most of the rush by enhancing your visibility on Comparison Shopping Engines.&lt;/p&gt;&#xD;
&lt;p&gt;&lt;strong&gt;Tip #4: Comply with Google Product Search Changes&lt;/strong&gt;&lt;/p&gt;&#xD;
&lt;p&gt;We’ve got a secret…Google Product Search is going to be HUGE this Holiday Season. Aside from its ever-increasing popularity as a shopping starting point, a number of apps, like RedLaser (found to be the most widely used barcode scanner by our &lt;a href="http://go.channeladvisor.com/AU-Website-2011-Consumer-Survey.html?ls=Website"&gt;Global Consumer Shopping Habits Survey&lt;/a&gt;), now use GPS data to compare prices and locate products. &lt;/p&gt;&#xD;
&lt;p&gt;&lt;a href="http://www.csestrategies.com/.a/6a00d8341d136453ef0162fc92eef6970d-pi"&gt;&lt;img alt="GPS iphone" border="0" src="http://www.csestrategies.com/.a/6a00d8341d136453ef0162fc92eef6970d-800wi" title="GPS iphone"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&#xD;
&lt;p&gt;Get on board with the most recent GPS specifications and check the requirement list—twice—to optimize on traffic and sales. Apparel retailers will want to pay special attention to include product variation data (color, material, pattern and size) as well as unique images for items that vary (by color, pattern or material). For more details, check out Google’s &lt;a href="http://www.google.com/support/merchants/bin/answer.py?answer=188494#US" target="_blank" title="Google Feed Specification Page"&gt;Feed Specification Help Page&lt;/a&gt;.&lt;/p&gt;&#xD;
&lt;p&gt;&lt;a href="http://www.csestrategies.com/.a/6a00d8341d136453ef0154371106e7970c-pi"&gt;&lt;img alt="GPS boots" border="0" src="http://www.csestrategies.com/.a/6a00d8341d136453ef0154371106e7970c-800wi" title="GPS boots"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;/p&gt;&#xD;
&lt;p&gt;&lt;strong&gt;Bonus Tip:&lt;/strong&gt; Retailers should heed to Google’s wishes by listing shipping and tax costs, too. Incorrect or excluded cost data can lead to suspension and, more importantly, can deter shoppers who expect total price points at a glimpse. Still think it’s not a big deal? Check out this &lt;a href="http://searchengineland.com/despite-new-rules-google-product-search-merchants-not-providing-accurate-tax-shipping-costs-100840" target="_blank" title="Search Engine Land "&gt;Search Engine Land&lt;/a&gt; article warning retailers against these violations, as well as the &lt;a href="http://www.csestrategies.com/cse/2011/09/guest-post-googles-mayuresh-saoji-shares-product-search-feed-changes.html" target="_blank" title="Google's Mayuresh Saoji Shares Product Search Feed Changes"&gt;guest blog post from Google's Mayuresh Saoji&lt;/a&gt; on this blog. &lt;/p&gt;&#xD;
&lt;p&gt;If you've missed our past tips here they are: &lt;/p&gt;&#xD;
&lt;p&gt;Tip #1: &lt;a href="http://www.csestrategies.com/channel_advisor_blog/2011/11/countdown-to-cyber-monday-daily-tips.html" target="_blank" title="Countdown to Cyber Monday Tip 1"&gt;Add Gift-Themed Categories&lt;/a&gt;&lt;/p&gt;&#xD;
&lt;p&gt;Tip #2: &lt;a href="http://www.csestrategies.com/channel_advisor_blog/2011/11/countdown-to-cyber-monday-daily-tip-2.html" target="_blank" title="Countdown to Cyber Monday Tip 2"&gt;Offer and Highlight Free and Expedited Shipping&lt;/a&gt;&lt;/p&gt;&#xD;
&lt;p&gt;Tip #3: &lt;a href="http://www.csestrategies.com/channel_advisor_blog/2011/11/countdown-to-cyber-monday-daily-tip-3.html" target="_self" title="Countdown to Cyber Monday Tip 3"&gt;Bid Up Early and Often&lt;/a&gt;&lt;/p&gt;&#xD;
&lt;p&gt;&lt;em&gt;Blog post by Natalie Sink, ChannelAdvisor Communications Assistant&lt;/em&gt;&lt;/p&gt;&#xD;
&lt;/div&gt;&#xD;
&lt;p&gt; &lt;/p&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/ComparisonShoppingEngineStrategies?a=6sWuwJS6WHs:N96jsk8biYg:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/ComparisonShoppingEngineStrategies?i=6sWuwJS6WHs:N96jsk8biYg:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/ComparisonShoppingEngineStrategies?a=6sWuwJS6WHs:N96jsk8biYg:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/ComparisonShoppingEngineStrategies?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</content>


    <feedburner:origLink>http://www.csestrategies.com/cse/2011/11/countdown-to-cyber-monday-daily-tip-4.html</feedburner:origLink></entry>
    <entry>
        <title>The Feed Doctor Returns: Percentage Savings Rule</title>
        <link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ComparisonShoppingEngineStrategies/~3/InKvFdH5I-g/the-feed-doctor-returns-percentage-savings-rule.html" />
        <link rel="replies" type="text/html" href="http://www.csestrategies.com/cse/2011/09/the-feed-doctor-returns-percentage-savings-rule.html" thr:count="0" />
        <id>tag:typepad.com,2003:post-6a00d8341d136453ef015391fac224970b</id>
        <published>2011-09-30T12:40:24-07:00</published>
        <updated>2011-09-30T12:40:24-07:00</updated>
        <summary>Recently I've been asked how to create a rule to generate a "percent savings" message. Let's say your sale price is in an attribute called $itemstoreprice, and the regular price is $itemretailprice. The formula for percent savings is: 100 *...</summary>
        <author>
            <name>scot wingo</name>
        </author>
        
        
<content type="html" xml:lang="en-US" xml:base="http://www.csestrategies.com/cse/">&lt;div xmlns="http://www.w3.org/1999/xhtml"&gt;&lt;p&gt;&lt;a href="http://www.csestrategies.com/.a/6a00d8341d136453ef015391faea25970b-pi" style="float: left;"&gt;&lt;img alt="25OFF" border="0" class="asset  asset-image at-xid-6a00d8341d136453ef015391faea25970b" src="http://www.csestrategies.com/.a/6a00d8341d136453ef015391faea25970b-800wi" style="margin: 0px 5px 5px 0px;" title="25OFF"&gt;&lt;/img&gt;&lt;/a&gt; Recently I've been asked how to create a rule to generate a "percent &lt;br&gt;savings" message. Let's say your sale price is in an attribute called&lt;br&gt;$itemstoreprice, and the regular price is $itemretailprice. The formula&lt;br&gt;for percent savings is:&lt;/p&gt;&#xD;
&lt;p&gt;&lt;strong&gt;100 * (1 - $itemstoreprice/$itemretailprice)&lt;/strong&gt;&lt;br&gt;&lt;br&gt;Here's the result for an item that's marked down to 14.99 from 19.99:&lt;br&gt;25.0125062531266&lt;/p&gt;&#xD;
&lt;p&gt;Well, that's kind of ugly. Maybe I only want whole numbers. That's easy to&lt;br&gt;do with the FORMATNUMBER function:&lt;/p&gt;&#xD;
&lt;p&gt;&lt;strong&gt;FORMATNUMBER (100 * (1 - $itemstoreprice/$itemretailprice), "F0")&lt;/strong&gt;&lt;br&gt;&lt;br&gt;That "F0" means to output a Fixed number of digits to the right of the&lt;br&gt;decimal; in this case, zero digits.&lt;/p&gt;&#xD;
&lt;p&gt;And here's the result: 25&lt;br&gt;&lt;br&gt;If you wanted two digits to the right of the decimal instead of "F0" you'd&lt;br&gt;have "F2" and the result would be 25.01.&lt;br&gt;&lt;br&gt;Let's stay with "F0," and some text:&lt;/p&gt;&#xD;
&lt;p&gt;&lt;strong&gt;CONCATENATE ("Save ", FORMATNUMBER (100 * (1 -&lt;/strong&gt;&lt;br&gt;&lt;strong&gt;$itemstoreprice/$itemretailprice), "F0"),"% off retail!")&lt;/strong&gt;&lt;br&gt;&lt;br&gt;Here's the result:&lt;/p&gt;&#xD;
&lt;p&gt;&lt;strong&gt;Save 25% off retail!&lt;/strong&gt;&lt;/p&gt;&#xD;
&lt;p&gt;&lt;em&gt;Blogpost by &lt;a href="http://blog.channeladvisor.com/our-bloggers.html" target="_blank" title="ChannelAdvisor bloggers"&gt;Anthony Alford: The Feed Doctor&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/ComparisonShoppingEngineStrategies?a=InKvFdH5I-g:Lr-DOKko4dY:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/ComparisonShoppingEngineStrategies?i=InKvFdH5I-g:Lr-DOKko4dY:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/ComparisonShoppingEngineStrategies?a=InKvFdH5I-g:Lr-DOKko4dY:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/ComparisonShoppingEngineStrategies?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</content>


    <feedburner:origLink>http://www.csestrategies.com/cse/2011/09/the-feed-doctor-returns-percentage-savings-rule.html</feedburner:origLink></entry>
    <entry>
        <title>Guest Post: Google's Mayuresh Saoji Shares Product Search Feed Changes</title>
        <link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ComparisonShoppingEngineStrategies/~3/ohQ7IgwtIog/guest-post-googles-mayuresh-saoji-shares-product-search-feed-changes.html" />
        <link rel="replies" type="text/html" href="http://www.csestrategies.com/cse/2011/09/guest-post-googles-mayuresh-saoji-shares-product-search-feed-changes.html" thr:count="0" />
        <id>tag:typepad.com,2003:post-6a00d8341d136453ef015391b9bece970b</id>
        <published>2011-09-19T08:40:49-07:00</published>
        <updated>2011-09-19T13:50:38-07:00</updated>
        <summary>As of September 22, 2022 Google will begin gradually enforcing the new Product Search feed spec requirements announced earlier.  In this post, Google's product manager shares tools for transition so that retailers' feeds are not suspended. </summary>
        <author>
            <name>Delisa Reavis</name>
        </author>
        
        
<content type="html" xml:lang="en-US" xml:base="http://www.csestrategies.com/cse/">&lt;div xmlns="http://www.w3.org/1999/xhtml"&gt;&lt;p&gt;&lt;strong&gt;Guest Post from Mayuresh Saoji, Senior Product Manager, Google&lt;/strong&gt;&lt;/p&gt;&#xD;
&lt;p&gt;&lt;a href="http://www.csestrategies.com/.a/6a00d8341d136453ef015391b9b83a970b-pi" style="float: left;"&gt;&lt;img alt="Mayuresh Saoji" border="0" class="asset  asset-image at-xid-6a00d8341d136453ef015391b9b83a970b" src="http://www.csestrategies.com/.a/6a00d8341d136453ef015391b9b83a970b-800wi" style="margin: 0px 5px 5px 0px;" title="Mayuresh Saoji"&gt;&lt;/img&gt;&lt;/a&gt;  As of September 22, 2011 Google will begin gradually enforcing the new Product Search feed spec requirements announced earlier &lt;a href="http://googlemerchantblog.blogspot.com/2011/07/important-changes-to-google-product.html" target="_blank"&gt;(link&lt;/a&gt;). Beginning Sept. 22, Google will being dropping items that do not meet the new spec requirements. In some cases, Google may even completely suspend accounts that don't meet the new requirements from Google Product Search. We’re guest-blogging here to make sure that ChannelAdvisor’s retailers are well aware of the changes, and can act in time to avoid items from being dropped or accounts from being suspended from Google Product Search, as well as to provide you with tools available from Google to help you prepare. &lt;/p&gt;&#xD;
&lt;div&gt;&lt;strong&gt;New tools to help you prepare&lt;/strong&gt; &#xD;
&lt;ul&gt;&#xD;
&lt;li&gt;First, use the new &lt;a href="http://www.google.com/support/merchants/bin/answer.py?answer=1188998" target="_blank" title="Google Test Data Feed Feature"&gt;Test Data Feed&lt;/a&gt; feature in &lt;a href="http://www.google.com/merchants" target="_blank" title="Google Merchant Center"&gt;Google Merchant Center&lt;/a&gt; (under “Data Feeds”) to test whether your updated feed complies with the new requirements. You will be able to download a full error report and resolve any issues prior to submitting your actual live feed. Rest assured, your test feed won’t appear on Google Product Search.&lt;/li&gt;&#xD;
&lt;li&gt;For additional guidance, you can now view our new video tutorials:    &#xD;
&lt;ul&gt;&#xD;
&lt;li&gt;&lt;a href="http://www.youtube.com/user/GoogleECommerce#p/a/u/0/fC0OlAja3JU" target="_blank" title="Understanding Google Changes"&gt;Understanding changes&lt;/a&gt;&lt;/li&gt;&#xD;
&lt;li&gt;&lt;a href="http://www.youtube.com/user/GoogleECommerce?feature=mhsn#p/a/u/0/FrW5BrMqziA" target="_blank" title="Providing Google High Quality Data"&gt;Providing high quality data&lt;/a&gt;&lt;/li&gt;&#xD;
&lt;li&gt;&lt;a href="http://www.youtube.com/user/GoogleECommerce?feature=mhsn#p/a/u/0/f8KoiuKnl00" target="_blank" title="Google Troubleshooting tools"&gt;Troubleshooting tools&lt;/a&gt;&lt;/li&gt;&#xD;
&lt;/ul&gt;&#xD;
&lt;/li&gt;&#xD;
&lt;li&gt;We are revamping the "Data Quality" tab in Google Merchant Center to enable you to quickly view the most critical data quality errors, and learn how to fix them (coming soon).&lt;/li&gt;&#xD;
&lt;/ul&gt;&#xD;
&lt;strong&gt;Understanding the new requirements&lt;/strong&gt;&lt;/div&gt;&#xD;
&lt;div&gt;&lt;strong&gt; &lt;br&gt;&lt;/strong&gt;We’ve received a few questions about specific attributes and have addressed these below. It’s a lot to read, but should save you time in the long run. Also, before you cancel vacation for your IT staff, please note that many of the requirements only apply to certain countries and categories.    &#xD;
&lt;ul&gt;&#xD;
&lt;li&gt;&lt;strong&gt;Google Product Category (aka GPC):&lt;/strong&gt; &lt;a href="http://www.google.com/support/merchants/bin/answer.py?answer=160081" target="_blank" title="Google Product Category"&gt;This attribute&lt;/a&gt; ensures that your products appear in the right category (you wouldn’t want that Harry Potter DVD showing up under “Books”) and that we apply the correct set of enforcement rules for a given category.    &#xD;
&lt;ul&gt;&#xD;
&lt;li&gt;GPC is only required for feeds targeting the US, UK, Germany, France or Japan&lt;/li&gt;&#xD;
&lt;li&gt;You don’t necessarily have to send us this attribute. It is only required for items that belong to one of the following seven categories:&lt;/li&gt;&#xD;
&lt;/ul&gt;&#xD;
&lt;/li&gt;&#xD;
&lt;/ul&gt;&#xD;
&lt;p dir="ltr" style="padding-left: 120px;"&gt;1.     Apparel &amp;amp; Accessories &amp;gt; Clothing&lt;/p&gt;&#xD;
&lt;p dir="ltr" style="padding-left: 120px;"&gt;2.     Apparel &amp;amp; Accessories &amp;gt; Shoes&lt;/p&gt;&#xD;
&lt;p dir="ltr" style="padding-left: 120px;"&gt;3.     Apparel &amp;amp; Accessories&lt;/p&gt;&#xD;
&lt;p dir="ltr" style="padding-left: 120px;"&gt;4.     Media &amp;gt; Books&lt;/p&gt;&#xD;
&lt;p dir="ltr" style="padding-left: 120px;"&gt;5.     Media &amp;gt; DVDs &amp;amp; Movies&lt;/p&gt;&#xD;
&lt;p dir="ltr" style="padding-left: 120px;"&gt;6.     Media &amp;gt; Music&lt;/p&gt;&#xD;
&lt;p dir="ltr" style="padding-left: 120px;"&gt;7.     Software &amp;gt; Video Game Software&lt;/p&gt;&#xD;
&lt;ul&gt;&#xD;
&lt;li&gt; &#xD;
&lt;ul&gt;&#xD;
&lt;li&gt;For items falling under these categories, you must include one of these seven values appropriately for each item.&lt;/li&gt;&#xD;
&lt;li&gt;More granular categorization is always preferred, but don’t stress out about this. If you can follow the level of categorization above, then you’ve satisfied our requirements.&lt;/li&gt;&#xD;
&lt;/ul&gt;&#xD;
&lt;/li&gt;&#xD;
&lt;/ul&gt;&#xD;
&lt;ul&gt;&#xD;
&lt;li&gt;&lt;strong&gt;Images:&lt;/strong&gt; We made image_link required for all products. Images are especially important for product in the “Apparel &amp;amp; Accessories” category, where shoppers love to see the different variations of a product.    &#xD;
&lt;ul&gt;&#xD;
&lt;li&gt;Required worldwide (except Japan)&lt;/li&gt;&#xD;
&lt;li&gt;For products that fall under  “Apparel &amp;amp; Accessories” (and all corresponding sub-categories), we require unique images for products that differ by the variant attribute ‘color’, or ‘pattern’, or ‘material.’ No one likes seeing a black sweater when they click on the red one.&lt;/li&gt;&#xD;
&lt;li&gt;We recommend sending separate images for variant products in other categories as well, but these are only required for “Apparel &amp;amp; Accessories.”&lt;/li&gt;&#xD;
&lt;/ul&gt;&#xD;
&lt;/li&gt;&#xD;
&lt;/ul&gt;&#xD;
&lt;ul&gt;&#xD;
&lt;li&gt;&lt;strong&gt;Apparel/ Variants:&lt;/strong&gt; Variety is the spice of life, and we’re working to create a richer shopping experience for apparel &amp;amp; accessories that come in multiple colors, patterns, sizes, etc.    &#xD;
&lt;ul&gt;&#xD;
&lt;li&gt;&lt;a href="http://www.google.com/support/merchants/bin/answer.py?answer=1347943" target="_blank" title="Apparel Variants"&gt;Apparel variants&lt;/a&gt; are only required for feeds targeting the US. For feeds targeting other countries, the attributes are recommended and may be required in the future.&lt;/li&gt;&#xD;
&lt;li&gt;Variant-level information is required only for products in the “'Apparel &amp;amp; Accessories' category, and all related subcategories&lt;/li&gt;&#xD;
&lt;li&gt;You only need to send us data for variant attributes if your product varies by that specific attribute. So, if your shirts are all made of cotton, there’s no need to send the “Material” attribute. However, if your shirts were available in three colors and three sizes, you would send us nine separate line items, varying by color and size.&lt;/li&gt;&#xD;
&lt;li&gt;There is no penalty for not sending variant level data for other categories&lt;/li&gt;&#xD;
&lt;li&gt;If you include variants, you also need to ensure that you send an “item_group_id” to connect those variants and that these group of variants share the same common title. More on this below.&lt;/li&gt;&#xD;
&lt;/ul&gt;&#xD;
&lt;/li&gt;&#xD;
&lt;/ul&gt;&#xD;
&lt;ul&gt;&#xD;
&lt;li&gt;&lt;strong&gt;Item_Group_ID:&lt;/strong&gt; We use this attribute to cluster together all the variants you send us for a given item. Sort of like Crazy Glue for variants.    &#xD;
&lt;ul&gt;&#xD;
&lt;li&gt;This attribute is required only for variant Apparel products in the US.&lt;/li&gt;&#xD;
&lt;li&gt;If you have a “Parent SKU” shared by all variants of a product, you can provide that as the value for 'item group id'.&lt;/li&gt;&#xD;
&lt;li&gt;If you send us an item_group_id attribute, we will automatically look for variant attributes. Conversely, if you did send us Item_group_id, you should ensure you send us at least one variant attribute.&lt;/li&gt;&#xD;
&lt;/ul&gt;&#xD;
&lt;/li&gt;&#xD;
&lt;/ul&gt;&#xD;
&lt;ul&gt;&#xD;
&lt;li&gt;&lt;strong&gt;Size:&lt;/strong&gt; This is an important Variant attribute for “Apparel &amp;amp; Accessories.”    &#xD;
&lt;ul&gt;&#xD;
&lt;li&gt;Size is only required for feeds targeting the US.&lt;/li&gt;&#xD;
&lt;li&gt;Separate your products into different line items in the feed (each line will have a different “size” attribute, and maybe even vary by other attributes)&lt;/li&gt;&#xD;
&lt;li&gt;There’s no need to send separate images for separate sizes (unless the appearance of the item changes because of the size)&lt;/li&gt;&#xD;
&lt;/ul&gt;&#xD;
&lt;/li&gt;&#xD;
&lt;/ul&gt;&#xD;
Please refer back to our detailed &lt;a href="http://www.google.com/support/merchants/bin/answer.py?answer=188494" target="_blank" title="Product Feed Specs"&gt;Product Feed Specification&lt;/a&gt; and &lt;a href="http://www.google.com/support/merchants/bin/answer.py?answer=1346661" target="_blank" title="Google Help Center"&gt;Help Center&lt;/a&gt; for more information. We hope these tips will help you be more fully prepared to make the most of Google Product Search as we head into the most important selling season of the year for online retailers. &lt;br&gt;&lt;br&gt;Shop On! &lt;/div&gt;&#xD;
&lt;p&gt;Blog Post by Mayuresh Saoji, Senior Product Manager, Google Product Search&lt;/p&gt;&#xD;
&lt;p&gt; &lt;/p&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/ComparisonShoppingEngineStrategies?a=ohQ7IgwtIog:fAvetGVozHw:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/ComparisonShoppingEngineStrategies?i=ohQ7IgwtIog:fAvetGVozHw:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/ComparisonShoppingEngineStrategies?a=ohQ7IgwtIog:fAvetGVozHw:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/ComparisonShoppingEngineStrategies?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</content>


    <feedburner:origLink>http://www.csestrategies.com/cse/2011/09/guest-post-googles-mayuresh-saoji-shares-product-search-feed-changes.html</feedburner:origLink></entry>
    <entry>
        <title>Google Changes Webinar Q+A follow-up...</title>
        <link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ComparisonShoppingEngineStrategies/~3/ltKGGJ-lk8g/google-changes-webinar-qa-follow-up.html" />
        <link rel="replies" type="text/html" href="http://www.csestrategies.com/cse/2011/06/google-changes-webinar-qa-follow-up.html" thr:count="0" />
        <id>tag:typepad.com,2003:post-6a00d8341d136453ef0154333c3ea0970c</id>
        <published>2011-06-24T11:29:35-07:00</published>
        <updated>2011-06-24T11:29:36-07:00</updated>
        <summary>Before Internet Retailer, on June 9th, we held a webinar about google changes including Panda, Google Product Search (GPS) changes and the impact on CSEs. After 70mins we still had ~10 questions in queue and promised to answer those. Here...</summary>
        <author>
            <name>scot wingo</name>
        </author>
        
        
<content type="html" xml:lang="en-US" xml:base="http://www.csestrategies.com/cse/">&lt;div xmlns="http://www.w3.org/1999/xhtml"&gt;&lt;p&gt;&lt;span&gt;Before Internet Retailer, on June 9th, we held a &lt;span&gt;webinar&lt;/span&gt; about google changes including Panda, Google Product Search (&lt;span&gt;GPS&lt;/span&gt;) changes and the impact on &lt;span&gt;CSEs&lt;/span&gt;.   After 70&lt;span&gt;mins&lt;/span&gt; we still had ~10 questions in queue and promised to answer those.  Here are the answers to those questions.  &lt;/span&gt;&lt;/p&gt;&#xD;
&lt;p&gt;&lt;span&gt;If you missed the original &lt;span&gt;webinar&lt;/span&gt;, you can listen to a recorded version of it here from our &lt;span&gt;webinars&lt;/span&gt; page (&lt;/span&gt;&lt;a href="http://www.channeladvisor.com/webinars/"&gt;&lt;span&gt;http://www.&lt;span&gt;channeladvisor&lt;/span&gt;.com/&lt;span&gt;webinars&lt;/span&gt;/&lt;/span&gt;&lt;/a&gt;) or follow&lt;a href="http://go.channeladvisor.com/us-webcast-google-update-june-2011.html?ls=Website&amp;amp;cid=701000000009UA6" target="_self"&gt;&lt;span&gt; this link to go directly to the &lt;span&gt;webinar&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;.&lt;/p&gt;&#xD;
&lt;p&gt;&lt;br&gt;&lt;strong&gt;&lt;em&gt;&lt;span&gt;Q1: On Google for the term &lt;span&gt;'clearvite&lt;/span&gt; &lt;span&gt;apex'&lt;/span&gt;,  we show up in organic search, page 1 in the top 5 results.  Yet we do not show up in google shopping until page 2.  How do the results from shopping differ from the organic search.  What can be done so that shopping results are more consistent with the “everything” organic search? &lt;/span&gt;&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;&#xD;
&lt;p&gt;&lt;span&gt;A1: The two algorithms are not the same as you've seen.  &lt;span&gt;Pagerank&lt;/span&gt; looks at the content (URL, page, etc.) and the inbound links.  &lt;span&gt;GPS&lt;/span&gt; uses the content and then factors such as sales rank (CTR as proxy), etc.  Without knowing more, it's hard to say, but usually our &lt;span&gt;GPS&lt;/span&gt; experts can analyze a feed file and find a whole host of things that can be impro&lt;span&gt;ved&lt;/span&gt; on the content side to improve your rankings which drives more sales which increases your sales rank, etc. &lt;/span&gt;&lt;/p&gt;&#xD;
&lt;p&gt; &lt;/p&gt;&#xD;
&lt;p&gt;&lt;strong&gt;&lt;em&gt;&lt;span&gt;Q2: Can you please tell me if I have this link right. I am having a problem accessing it. http://www.google.com/products/seller?&lt;span&gt;zmi&lt;/span&gt;=&lt;span&gt;cdrackem&lt;/span&gt;.com &lt;/span&gt;&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;&#xD;
&lt;p&gt;&lt;span&gt;A2: Weird, usually that shortcut works.  We tried using the longer form and got there here: &lt;/span&gt;&lt;/p&gt;&#xD;
&lt;p&gt;&lt;span&gt;http://www.google.com/products/seller?&lt;span&gt;cmi&lt;/span&gt;=2586711006707712&amp;amp;&lt;span&gt;zmi&lt;/span&gt;=&lt;span&gt;cdrackem&lt;/span&gt;.com&amp;amp;sa=X&amp;amp;&lt;span&gt;ei&lt;/span&gt;=&lt;span&gt;PZn&lt;/span&gt;_TcmrN6jj0&lt;span&gt;QGmhdWaAw&lt;/span&gt;&amp;amp;&lt;span&gt;ved&lt;/span&gt;=0&lt;span&gt;CBsQwQY&lt;/span&gt; &lt;/span&gt;&lt;/p&gt;&#xD;
&lt;p&gt;&lt;span&gt;The longer form instructions:&lt;br&gt;&lt;ol&gt;&#xD;
&lt;li&gt;Go to a google &lt;span&gt;SERP&lt;/span&gt; and click on &lt;span&gt;'rated'&lt;/span&gt; for those that have merchant ratings.&lt;/li&gt;&#xD;
&lt;li&gt;Edit the URL to be your URL instead of the one you clicked on. &lt;/li&gt;&#xD;
&lt;/ol&gt;&lt;/span&gt;&lt;/p&gt;&#xD;
&lt;p&gt;&lt;em&gt;&lt;strong&gt;&lt;span&gt;Q3: Also have you ever heard of "influencing keywords". I am using an &lt;span&gt;SEO&lt;/span&gt; company called &lt;span&gt;XXXX&lt;/span&gt; that specializes in &lt;span&gt;'influencing&lt;/span&gt; &lt;span&gt;keywords'&lt;/span&gt;. I fear at this time they be doing me harm rather than good. How can I find that out? &lt;/span&gt;&lt;/strong&gt;&lt;/em&gt;&lt;/p&gt;&#xD;
&lt;p&gt;&lt;span&gt;A: As we said on the &lt;span&gt;webinar&lt;/span&gt;, any &lt;span&gt;SEO&lt;/span&gt; firm that claims to have a silver bullet that &lt;span&gt;'guarantees'&lt;/span&gt; you some kind of &lt;span&gt;SEO&lt;/span&gt; results, should probably be avoided.  If they are out there buying links for you, that is very very dangerous and has resulted in overstock and &lt;span&gt;jcp&lt;/span&gt; being in &lt;span&gt;google's&lt;/span&gt; high profile penalty box.  Panda/Farmer was specifically targeted at content farmers and this &lt;span&gt;'influencing&lt;/span&gt; &lt;span&gt;keywords'&lt;/span&gt; sounds like someone maybe going out there and writing bogus content to try and fool google to increase your rank.  It's our belief that the risk is not worth the reward on these types of schemes, but of course it's up to each retailer to go through that calculation. &lt;/span&gt;&lt;/p&gt;&#xD;
&lt;p&gt;&lt;em&gt;&lt;strong&gt;&lt;span&gt;Q4: I was wondering if there was any way to get more information on how Product Display Ads / Auto Targets work within Google.We are trying to figure out what criteria Google uses to display the products.  Sometimes the products are not even relevant to the search term. For instance, if you search for “Raw Protein” the product &lt;span&gt;Wobenzym&lt;/span&gt; will show in the Product Ads section on the top right, but our competitor’s Raw protein product shows. &lt;/span&gt;&lt;/strong&gt;&lt;/em&gt;&lt;/p&gt;&#xD;
&lt;p&gt;A: Google does not publish or discuss their matching algorithm for Google Product Listing Ads. It is supposed to automatically match user intention with products, but we have seen, as you have, that is not always accurate. We suspect that this is part of the reason that we are currently seeing fewer product listing ads in Google search results as Google works to refine their matching algorithms.&lt;/p&gt;&#xD;
&lt;p&gt;&lt;em&gt;&lt;strong&gt;Q5: I was suspended from Amazon Marketplace (I was 100% not guilty-it was an Amazon internal issue).  Am I still able to sell on Amazon using Amazon Product Ads?  I ask because this was suggested as a way to sell on Amazon (without having a Sellers account)?&lt;/strong&gt;&lt;/em&gt;&lt;br&gt;&lt;br&gt;&lt;span&gt;A5: Amazon is extremely efficient at never letting suspended sellers back on the site. While I've never seen this exact situation, my guess is they would not allow it.  Your best bet would be to partner with a reseller or a completely different entity with completely different information (everything - &lt;span&gt;IPs&lt;/span&gt;, bank accounts, names, addresses, &lt;span&gt;EIN&lt;/span&gt;, &lt;span&gt;SSN&lt;/span&gt;, etc.) and work with them to run product ads.&lt;/span&gt;&lt;/p&gt;&#xD;
&lt;p&gt;&lt;em&gt;&lt;strong&gt;&lt;span&gt;Q6: Have you found that Google &lt;span&gt;adwords&lt;/span&gt; ads are more or less effective this year (as op to last year)?  Is Bing or economy doing any damage to Google &lt;span&gt;adwords&lt;/span&gt;?&lt;/span&gt;&lt;/strong&gt;&lt;/em&gt;&lt;br&gt;&lt;br&gt;A6: Over on eBay strategies we release SSS and search details. Here's a link to the May results.  As you can see y/y search has slowed, and conversion rates are up, costs are up, etc.  Between google and bing, we don't see a change in that google has &amp;gt; 66% market share, so the whole space is a little soft right now, most likely due to the economy.&lt;/p&gt;&#xD;
&lt;p&gt;&lt;strong&gt;&lt;em&gt;&lt;span&gt;Q7:  I tried the Google link you posted at the &lt;span&gt;webinar&lt;/span&gt; (to ck Web Site reviews) but link did not work?  Is this link correct: google.com/products/seller?&lt;span&gt;zmi&lt;/span&gt;=xxx.com A: See Q2 for more directions.&lt;/span&gt;&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;&#xD;
&lt;p&gt;Q8: If selling via ebay, amazon and your own web site would be the top 3 venues to sell on - what would you consider to be no 4? &lt;/p&gt;&#xD;
&lt;p&gt;A8: We have an unusual view of the world in that we view the web site as an enabler for even more channels.  So I would say once you have your web site active, you should consider search.  We publish an annual report on the influence across all of e-commerce for the major channels.  For 2010: &lt;/p&gt;&#xD;
&lt;ul&gt;&#xD;
&lt;li&gt;Paid Search - 44%&lt;/li&gt;&#xD;
&lt;li&gt;Marketplaces (largely eBay and Amazon) - 27%&lt;/li&gt;&#xD;
&lt;li&gt;&lt;span&gt;&lt;span&gt;CSE&lt;/span&gt; - 10%&lt;/span&gt;&lt;/li&gt;&#xD;
&lt;li&gt;Direct - 9%&lt;/li&gt;&#xD;
&lt;li&gt;Mobile - 6%&lt;/li&gt;&#xD;
&lt;li&gt;Social - 4% &lt;/li&gt;&#xD;
&lt;/ul&gt;&#xD;
&lt;p&gt;Search is the largest and in your questio&lt;span&gt;n you don't mention it which is why we suggest search and &lt;span&gt;CSE&lt;/span&gt; as the next channels because they represent 53% of e-commerce.  Of course this is a rule of thumb and some situations don't work well in those channels and we'd recommend something else.  That being said, if eBay and Amazon are working well, then usually retailers can make the jump quickly to search and &lt;span&gt;CSE&lt;/span&gt; - they are just different and require a different set of knowledge. &lt;/span&gt;&lt;/p&gt;&#xD;
&lt;p&gt; &lt;/p&gt;&#xD;
&lt;p&gt;That's it - if you have any other questions, sound off in comments.&lt;/p&gt;&#xD;
&lt;p&gt; &lt;/p&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/ComparisonShoppingEngineStrategies?a=ltKGGJ-lk8g:1KdlrUDYudQ:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/ComparisonShoppingEngineStrategies?i=ltKGGJ-lk8g:1KdlrUDYudQ:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/ComparisonShoppingEngineStrategies?a=ltKGGJ-lk8g:1KdlrUDYudQ:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/ComparisonShoppingEngineStrategies?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</content>


    <category term="GPS" scheme="http://rss.financialcontent.com/stocksymbol" /><feedburner:origLink>http://www.csestrategies.com/cse/2011/06/google-changes-webinar-qa-follow-up.html</feedburner:origLink></entry>
    <entry>
        <title>CSE Holiday Rates for 2010</title>
        <link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ComparisonShoppingEngineStrategies/~3/Ly_wEF8gc2M/cse-holiday-rates-for-2010.html" />
        <link rel="replies" type="text/html" href="http://www.csestrategies.com/cse/2010/11/cse-holiday-rates-for-2010.html" thr:count="0" />
        <id>tag:typepad.com,2003:post-6a00d8341d136453ef013488dec8cc970c</id>
        <published>2010-11-10T13:00:49-08:00</published>
        <updated>2010-11-11T10:11:48-08:00</updated>
        <summary>Tis the season… For ecommerce retailers, this means huge boosts to conversions and revenue. For advertisers on CSEs, this typically means rate increases. In Holiday Seasons past, these rate increases have generally been 25% across all categories starting at the...</summary>
        <author>
            <name>Mark Vandegrift</name>
        </author>
        <category scheme="http://www.sixapart.com/ns/types#category" term="CSE News" />
        
        
<content type="html" xml:lang="en-US" xml:base="http://www.csestrategies.com/cse/">&lt;div xmlns="http://www.w3.org/1999/xhtml"&gt;&lt;p&gt;Tis the season… For ecommerce retailers, this means huge boosts to conversions and revenue. For advertisers on CSEs, this typically means rate increases. In Holiday Seasons past, these rate increases have generally been 25% across all categories starting at the beginning of November and ending as last mid-January. However, last year, we saw a different trend. For some CSEs, the rate increases did not apply to all categories and for the categories that did have increases, they varied from 5 – 25%. There were some CSEs in 2009 who chose not to raise rates all!&lt;/p&gt;&#xD;
&lt;p&gt;&lt;br&gt;For 2010, we find NexTag and PriceGrabber raising rates across all categories by 25%. This applies to all traffic you have received since November 1. Their rate increase will last into January of 2011. Shopping.com and Shopzilla rate increases will vary between 0 and 30% based on category. This is the first I remember any category rate increase being more than 25%. Amazon Product Ads and Become.com will not be increasing rates for the holidays.&lt;/p&gt;&#xD;
&lt;p&gt;&lt;br&gt;For a more complete list of which CSEs are making rate changes, what the increases will be, when the rate increases will begin and end, and rate cards for category-by-category rate increases, see our &lt;a href="http://ssc.channeladvisor.com/2010-comparison-shopping-holiday-rate-changes" target="_blank"&gt;2010 Comparison Shopping Holiday Rate Changes&lt;/a&gt; page in the ChannelAdvisor Strategy and Support Center.&lt;/p&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/ComparisonShoppingEngineStrategies?a=Ly_wEF8gc2M:fYU8HG8uX_0:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/ComparisonShoppingEngineStrategies?i=Ly_wEF8gc2M:fYU8HG8uX_0:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/ComparisonShoppingEngineStrategies?a=Ly_wEF8gc2M:fYU8HG8uX_0:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/ComparisonShoppingEngineStrategies?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</content>


    <feedburner:origLink>http://www.csestrategies.com/cse/2010/11/cse-holiday-rates-for-2010.html</feedburner:origLink></entry>
    <entry>
        <title>ChannelAdvisor @ Shop.org - booth 507</title>
        <link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ComparisonShoppingEngineStrategies/~3/vdzWN_2LY3g/channeladvisor-shoporg-booth-507.html" />
        <link rel="replies" type="text/html" href="http://www.csestrategies.com/cse/2010/09/channeladvisor-shoporg-booth-507.html" thr:count="0" />
        <id>tag:typepad.com,2003:post-6a00d8341d136453ef013487b77f7f970c</id>
        <published>2010-09-25T21:37:22-07:00</published>
        <updated>2010-09-25T21:37:22-07:00</updated>
        <summary>A bunch of ChannelAdvisors are heading down to Dallas for this year's shop.org annual summit. We'll be in booth 507 if you want to see our search, cse, marketplaces and rich media in action. Also, I'm speaking at the "40+...</summary>
        <author>
            <name>scot wingo</name>
        </author>
        
        
<content type="html" xml:lang="en-US" xml:base="http://www.csestrategies.com/cse/">A bunch of ChannelAdvisors are heading down to Dallas for this year's shop.org annual summit.  We'll be in booth 507 if you want to see our search, cse, marketplaces and rich media in action.  Also, I'm speaking at the "40+ Things You Can Do to Make More Money Next Week" session taking place Tuesday, September 28 from 3:15 to 4:15.  This is going to be a fast-fire session with some great strategies that you can implement before Holiday 2010. I look forward to meeting everyone in the Great State of Texas!&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/ComparisonShoppingEngineStrategies?a=vdzWN_2LY3g:zhCj37L_3kk:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/ComparisonShoppingEngineStrategies?i=vdzWN_2LY3g:zhCj37L_3kk:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/ComparisonShoppingEngineStrategies?a=vdzWN_2LY3g:zhCj37L_3kk:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/ComparisonShoppingEngineStrategies?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</content>


    <feedburner:origLink>http://www.csestrategies.com/cse/2010/09/channeladvisor-shoporg-booth-507.html</feedburner:origLink></entry>
    <entry>
        <title>ChannelAdvisor acknowledged as top Comparison Shopping Engine software vendor to the IR500!</title>
        <link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ComparisonShoppingEngineStrategies/~3/Tn5AqL7ue6Q/channeladvisor-acknowledged-as-top-comparison-shopping-engine-software-vendor-to-the-ir500.html" />
        <link rel="replies" type="text/html" href="http://www.csestrategies.com/cse/2010/08/channeladvisor-acknowledged-as-top-comparison-shopping-engine-software-vendor-to-the-ir500.html" thr:count="0" />
        <id>tag:typepad.com,2003:post-6a00d8341d136453ef0133f320272a970b</id>
        <published>2010-08-17T07:07:09-07:00</published>
        <updated>2010-08-17T07:07:09-07:00</updated>
        <summary>Today, August 17th, we announced that ChannelAdvisor has been recognized by Internet Retailer magazine as the top CSE vendor. We also scored well in search and Rich Media. Unfortunately, IR doesn't have a marketplaces category (Amazon / eBay ) as...</summary>
        <author>
            <name>scot wingo</name>
        </author>
        
        
<content type="html" xml:lang="en-US" xml:base="http://www.csestrategies.com/cse/">&lt;p&gt;Today, August 17th, we &lt;a href="http://www.channeladvisor.com/news/press-reader.php?id=94&amp;amp;y=2010"&gt;announced &lt;/a&gt;that ChannelAdvisor has been recognized by Internet Retailer magazine as the top CSE vendor.  We also scored well in search and Rich Media.  Unfortunately, IR doesn't have a marketplaces category (Amazon / eBay ) as we would have dominated that one as well.&lt;/p&gt;&lt;p&gt;Thanks to all of our customers for helping us achieve the number one slot.  Your feedback has enabled us to implement advanced features unavailable in other solutions, catapulting us to the top.&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;-Scot&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/ComparisonShoppingEngineStrategies?a=Tn5AqL7ue6Q:Tf6pUE8Gk48:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/ComparisonShoppingEngineStrategies?i=Tn5AqL7ue6Q:Tf6pUE8Gk48:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/ComparisonShoppingEngineStrategies?a=Tn5AqL7ue6Q:Tf6pUE8Gk48:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/ComparisonShoppingEngineStrategies?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</content>


    <feedburner:origLink>http://www.csestrategies.com/cse/2010/08/channeladvisor-acknowledged-as-top-comparison-shopping-engine-software-vendor-to-the-ir500.html</feedburner:origLink></entry>
    <entry>
        <title>Google Rumored to be Acquiring Like.com</title>
        <link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ComparisonShoppingEngineStrategies/~3/ixbB-WcjcW0/google-rumored-to-be-acquiring-likecom.html" />
        <link rel="replies" type="text/html" href="http://www.csestrategies.com/cse/2010/08/google-rumored-to-be-acquiring-likecom.html" thr:count="0" />
        <id>tag:typepad.com,2003:post-6a00d8341d136453ef0134863e1749970c</id>
        <published>2010-08-16T08:12:23-07:00</published>
        <updated>2010-08-16T08:13:15-07:00</updated>
        <summary>TechCrunch is reporting that Google is the late stages of acquiring visual search engine Like.com. The company also owns several other properties that utilize its image search technology, including Style By Jacquie and the fashion profiling site Covet.com. Originally developed...</summary>
        <author>
            <name>Mark Vandegrift</name>
        </author>
        <category scheme="http://www.sixapart.com/ns/types#category" term="CSE News" />
        
        
<content type="html" xml:lang="en-US" xml:base="http://www.csestrategies.com/cse/">
&lt;div xmlns="http://www.w3.org/1999/xhtml"&gt;&lt;p class="MsoNormal"&gt;&lt;a href="http://www.csestrategies.com/.a/6a00d8341d136453ef0134863e138f970c-pi" style="float: right;"&gt;&lt;img alt="Like_logo" class="asset asset-image at-xid-6a00d8341d136453ef0134863e138f970c " src="http://www.csestrategies.com/.a/6a00d8341d136453ef0134863e138f970c-500wi" style="margin: 0px 0px 5px 5px; width: 217px; height: 77px;" title="Like_logo" /&gt;&lt;/a&gt;&lt;a href="http://techcrunch.com/2010/08/15/google-to-acquire-like-com-after-leaving-them-at-the-altar-in-2005/" target="_blank"&gt;TechCrunch is reporting&lt;/a&gt; that Google is the late stages of
acquiring visual search engine &lt;a href="http://www.like.com/" target="_blank"&gt;Like.com&lt;/a&gt;. The company also owns several other
properties that utilize&amp;#0160; its image search technology, including &lt;a href="http://www.stylebyjacquie.com/"&gt;Style By
Jacquie&lt;/a&gt; and the fashion profiling site &lt;a href="http://www.covet.com/" target="_blank"&gt;Covet.com&lt;/a&gt;. Originally developed for
facial recognition purposes under the moniker Riya, the search technology has
also been applied to user generated photos, not just product/celeb images.&lt;/p&gt;

&lt;p class="MsoNormal"&gt;&lt;o:p&gt;&lt;/o:p&gt;If this is indeed to be, there are certainly merchants out
there wondering what will happen to these existing sites and the
traffic/revenue that originates from them. Like.com is a significant AdWords
advertiser and has become a large referrer of traffic to some merchants in the
shoes, apparel and accessory categories. Like also acts as a publisher of
Shopping.com, Shopzilla, and PriceGrabber offer content, so merchants not
sending a direct feed into Like.com may still receiving benefit from their
properties. &lt;/p&gt;



&lt;p class="MsoNormal"&gt;It seems likely that Google&amp;#39;s true target here is not any of
these sites but the underlying technology, which generally does a very good job
of returning similar product images by color, shape, pattern, etc. It doesn’t
seem likely that Google would maintain these sites long term in parallel to
Google Product Search. For one, it’s a conflict of interest since AdWords is a
main acquisition channel for Like.com, but also Google generally thinks way
bigger than that. &lt;/p&gt;



&lt;p class="MsoNormal"&gt;Integration of Like.com’s visual system into Google&amp;#39;s
existing search experience, both for product search and otherwise, could result
in a very attractive option for users, especially in instances where words are
not nearly as representative of the query subject as an image (this is exactly
why Like.com focuses on clothes, shoes and accessories and not laptops or
TVs).&amp;#0160; Giving users not only more ways to search but options that allow
clearer communication of what is sought is definitely a win for Google. In
addition, expanding the &lt;a href="http://googleblog.blogspot.com/2010/07/ooh-ahh-google-images-presents-nicer.html" target="_blank"&gt;already overhauled image search&lt;/a&gt; to build a stronger
response to Bing’s “&lt;a href="http://www.bing.com/visualsearch" target="_blank"&gt;Visual Search&lt;/a&gt;,” which is frankly more of a visual browse
experience, is probably seen internally as a plus. &lt;/p&gt;



&lt;p class="MsoNormal"&gt;If this sort of integration is the long term goal, the
product search integration is the logical first step since that is the
technology’s primary use right now. Such a feature could mean an increase in
stickiness for the already popular Google Product Search. However, there isn’t a
lot of certainty outside of Like.com as to how many of their users choose
visual search over the trusty old text box. Similarly, there is little clarity
as to what the conversion rate of users who choose visual search over text
based search looks like. When it comes to clothes and shoes, different brands
and models can look very similar, so using an image to find that exact item
seems a lot less effective than a text based search. Really only when users
don’t know exactly what they are looking for and want to be guided to
aesthetically similar items does an image search seem extremely valuable. That
sounds like a less qualified shopper. Then again, as long as Google Product
Search traffic remains free, does it really matter how qualified the user is? &lt;/p&gt;



&lt;p class="MsoNormal"&gt;There is also the possibility that this is intended to
augment the already live &lt;a href="http://www.google.com/mobile/goggles/#text" target="_blank"&gt;Google Goggles&lt;/a&gt; app on the android platform, which
allows for searches based on user photos. Though media products seem to already
work fine in Goggles, other types of products have not yet been a focus. Both
the technology and the existing product catalog could act as an accelerator to
expanding the scope of the Goggles application, acting, at least in the short
term, like a &lt;a href="http://redlaser.com/" target="_blank"&gt;RedLaser&lt;/a&gt; for clothes, shoes and accessories.&lt;/p&gt;



&lt;p class="MsoNormal"&gt;Speculation aside, it seems safe to assume that Google wants
to use this software to expand what they are already good at: helping users
find things, and either serving ads during that experience, or driving Google
usage/loyalty so they can continue to serve even more ads during other points
in the Google experience. &lt;/p&gt;&lt;/div&gt;
&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/ComparisonShoppingEngineStrategies?a=ixbB-WcjcW0:SqPE3BZelRA:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/ComparisonShoppingEngineStrategies?i=ixbB-WcjcW0:SqPE3BZelRA:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/ComparisonShoppingEngineStrategies?a=ixbB-WcjcW0:SqPE3BZelRA:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/ComparisonShoppingEngineStrategies?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</content>


    <feedburner:origLink>http://www.csestrategies.com/cse/2010/08/google-rumored-to-be-acquiring-likecom.html</feedburner:origLink></entry>
    <entry>
        <title>Kelkoo Enters US Market</title>
        <link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ComparisonShoppingEngineStrategies/~3/fSaQHnaSWgY/kelkoo-enters-us-market.html" />
        <link rel="replies" type="text/html" href="http://www.csestrategies.com/cse/2010/07/kelkoo-enters-us-market.html" thr:count="0" />
        <id>tag:typepad.com,2003:post-6a00d8341d136453ef013485731a2a970c</id>
        <published>2010-07-15T09:04:40-07:00</published>
        <updated>2010-07-15T09:04:40-07:00</updated>
        <summary>Kelkoo formally announced today its entrance into the already crowded US comparison shopping market via Kelkoo.com, a domain previously used to provide navigation to country specific Kelkoo sites within Europe. The new site, which is currently in beta, starts with...</summary>
        <author>
            <name>Mark Vandegrift</name>
        </author>
        
        
<content type="html" xml:lang="en-US" xml:base="http://www.csestrategies.com/cse/">&lt;p&gt;Kelkoo &lt;a href="http://www.kelkoo.co.uk/co_17570-kelkoo-press-release-kelkoo-expands-into-usa.html" target="_blank"&gt;formally announced&lt;/a&gt; today its entrance into the already crowded US comparison shopping market via &lt;a href="http://www.kelkoo.com/" target="_blank"&gt;Kelkoo.com&lt;/a&gt;, a domain previously used  to provide navigation to country specific Kelkoo sites within Europe. The new site, which is currently in beta, starts with a simple search box, as opposed to their long-established geography-specific sites which are heavier on content and merchandising. I assume this will change with time as they work to develop an engaging experience for the US market.&lt;/p&gt;&lt;p&gt;Though the US market for comparison shopping is certainly an attractive expansion target, Kelkoo faces some challenges in their attempt to become a significant player. The most significant is that they will be starting from scratch in terms of consumer acquisition, and without the benefit of the brand strength that surely assisted them in earlier movements into new countries within Europe. They also lack direct merchant relationships, illustrated by their current offer content which appears to be sourced via several publisher programs including Shopping.com and PriceGrabber. As they mentioned, their already geographically diverse platform should make it relatively easy for them to on-board new merchants once relationships are established, but content such as merchant ratings and product ratings will take time to reach the critical mass necessary for them to offer a unique experience.&lt;/p&gt;&lt;p&gt;Despite these challenges, with their years of experience in comparison shopping and new market penetration to lean on, I expect them to make some waves in the future. We welcome them to the US market and wish them luck!&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/ComparisonShoppingEngineStrategies?a=fSaQHnaSWgY:HdHTwTOBACY:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/ComparisonShoppingEngineStrategies?i=fSaQHnaSWgY:HdHTwTOBACY:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/ComparisonShoppingEngineStrategies?a=fSaQHnaSWgY:HdHTwTOBACY:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/ComparisonShoppingEngineStrategies?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</content>


    <feedburner:origLink>http://www.csestrategies.com/cse/2010/07/kelkoo-enters-us-market.html</feedburner:origLink></entry>

</feed><!-- ph=1 -->

