<?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>Wordpress Consulting &#38; SEO &#187; internet-marketing</title>
	<atom:link href="http://www.bradleyspencer.com/category/internet-marketing/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.bradleyspencer.com</link>
	<description>Building traffic and driving sales for Small Business and Bloggers since 2003.</description>
	<lastBuildDate>Fri, 03 Feb 2012 15:21:46 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>Javascript Conditional Code for Conversion Tracking in Google Adwords</title>
		<link>http://www.bradleyspencer.com/2012/javascript-conditional-code-for-conversion-tracking-in-google-adwords/</link>
		<comments>http://www.bradleyspencer.com/2012/javascript-conditional-code-for-conversion-tracking-in-google-adwords/#comments</comments>
		<pubDate>Mon, 16 Jan 2012 21:08:19 +0000</pubDate>
		<dc:creator>Bradley</dc:creator>
				<category><![CDATA[internet-marketing]]></category>
		<category><![CDATA[javascript snippet]]></category>
		<category><![CDATA[marketing research]]></category>
		<category><![CDATA[One-Minute Guides]]></category>
		<category><![CDATA[search-engine-optimization]]></category>
		<category><![CDATA[tracking tutorials]]></category>
		<category><![CDATA[user testing]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wordpress consulting]]></category>
		<category><![CDATA[wordpress tutorial]]></category>

		<guid isPermaLink="false">http://www.bradleyspencer.com/?p=1768</guid>
		<description><![CDATA[I was working with a Squarespace site recently and needed to put some tracking code on the success page after a contact form. I&#8217;m not as familiar with SquareSpace as WordPress and had to write some javascript code to run on a contact form tracking page.  Since no PHP was available to write, Eric and [...]<p><a href="http://www.bradleyspencer.com/2012/javascript-conditional-code-for-conversion-tracking-in-google-adwords/">Javascript Conditional Code for Conversion Tracking in Google Adwords</a> is a post from: <a href="http://www.bradleyspencer.com">Wordpress Consulting &amp; SEO</a> which runs <a href='http://www.bradleyspencer.com/2009/discounts-the-thesis-theme-for-wordpress-coupon-for-free-extras/'>Thesis Theme</a> with <a href='http://wordpresslandingpage.com/'>Wordpress Landing Page Theme</a></p>
]]></description>
			<content:encoded><![CDATA[<p></p><p>I was working with a Squarespace site recently and needed to put some tracking code on the success page after a contact form.</p>
<p>I&#8217;m not as familiar with SquareSpace as WordPress and had to write some javascript code to run on a contact form tracking page.  Since no PHP was available to write, <a href="http://ericnkatz.com/">Eric</a> and I did it strictly in Javascript.  Here&#8217;s the final code:</p>
<pre class="brush: jscript; title: ; notranslate">
&lt;script type=&quot;text/javascript&quot;&gt;
if ((location.href)==&quot;http:www.yoursite.com/trackingpage&quot;) {
/* &lt;![CDATA[ */
var google_conversion_id = xxxxxxxx;
var google_conversion_language = &quot;en&quot;;
var google_conversion_format = &quot;1&quot;;
var google_conversion_color = &quot;000000&quot;;
var google_conversion_label = &quot;xxxxxxxxxxx&quot;;
var google_conversion_value = 0;
/* ]]&gt; */
}
&lt;/script&gt;
</pre>
<p>Naturally you&#8217;ll need to change these three values:</p>
<ol>
<li>Change <em>http:www.yoursite.com/trackingpage </em>to the exact URL of the transaction URL.</li>
<li>Replace the<em> xxxxxxxx</em> after google_conversion_id to whatever your actual conversion is is.</li>
<li>You&#8217;ll also need to change <em>xxxxxxxx</em> after google_conversion_label to whatever your actual label is, too.</li>
</ol>
<div>That&#8217;s it!  Now this code can be included on every page but will still only trigger on the conversion page.</div>
<p><a href="http://www.bradleyspencer.com/2012/javascript-conditional-code-for-conversion-tracking-in-google-adwords/">Javascript Conditional Code for Conversion Tracking in Google Adwords</a> is a post from: <a href="http://www.bradleyspencer.com">WordPress Consulting &amp; SEO</a> which runs <a href='http://www.bradleyspencer.com/2009/discounts-the-thesis-theme-for-wordpress-coupon-for-free-extras/'>Thesis Theme</a> with <a href='http://wordpresslandingpage.com/'>WordPress Landing Page Theme</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bradleyspencer.com/2012/javascript-conditional-code-for-conversion-tracking-in-google-adwords/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Comment Spam: How to get less comment spam on your WP Blog</title>
		<link>http://www.bradleyspencer.com/2012/comment-spam/</link>
		<comments>http://www.bradleyspencer.com/2012/comment-spam/#comments</comments>
		<pubDate>Mon, 16 Jan 2012 04:25:05 +0000</pubDate>
		<dc:creator>Bradley</dc:creator>
				<category><![CDATA[internet-marketing]]></category>
		<category><![CDATA[marketing research]]></category>
		<category><![CDATA[search-engine-optimization]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wordpress consulting]]></category>
		<category><![CDATA[wordpress tutorial]]></category>

		<guid isPermaLink="false">http://www.bradleyspencer.com/?p=1763</guid>
		<description><![CDATA[Without the proper protection, comment spam is an absolute nightmare in WordPress.  Fortunately, the proper protections are very easy to come by. As a primer, comment spam is any comment left on your blog that adds nothing to the conversation and was likely mass posted.  These comments sometimes look like: Great post!  This makes me [...]<p><a href="http://www.bradleyspencer.com/2012/comment-spam/">WordPress Comment Spam: How to get less comment spam on your WP Blog</a> is a post from: <a href="http://www.bradleyspencer.com">Wordpress Consulting &amp; SEO</a> which runs <a href='http://www.bradleyspencer.com/2009/discounts-the-thesis-theme-for-wordpress-coupon-for-free-extras/'>Thesis Theme</a> with <a href='http://wordpresslandingpage.com/'>Wordpress Landing Page Theme</a></p>
]]></description>
			<content:encoded><![CDATA[<p></p><p>Without the proper protection, comment spam is an absolute nightmare in WordPress.  Fortunately, the proper protections are very easy to come by.</p>
<p>As a primer, comment spam is any comment left on your blog that adds nothing to the conversation and was likely mass posted.  These comments sometimes look like:</p>
<blockquote><p>Great post!  This makes me really think.</p></blockquote>
<p>Or something like&#8230;.</p>
<blockquote><p>Wow, I couldn&#8217;t have said it better myself!</p></blockquote>
<p>You can spot spam comments because they are usually positive in vibe and could fit just about any blog post.  The spammers do this in the hopes that the link behind their name will help their website rank better.  So if you aren&#8217;t sure if the comment is spam, a good way to tell is to look at where their name links to.  If it looks fishy, then you&#8217;ve got a spam commenter on your hands.<span id="more-1763"></span></p>
<h2>How Bad is the Spam Industry?</h2>
<p>I was amazed and what I found this evening when searching through &#8220;WordPress&#8221; related keywords.  Check this out:</p>
<div id="attachment_1764" class="wp-caption aligncenter" style="width: 479px">
	<a href="http://www.bradleyspencer.com/wp-content/uploads/2012/01/Keywords-Related-to_-wordpress.jpg"><img class="size-full wp-image-1764" title="Keywords Related to_ wordpress" src="http://www.bradleyspencer.com/wp-content/uploads/2012/01/Keywords-Related-to_-wordpress.jpg" alt="Top Searched Keyword Terms for WordPress" width="479" height="382" /></a>
	<p class="wp-caption-text">Top Searched Keyword Terms for WordPress</p>
</div>
<p>If you look closely at the terms with the red arrows, you&#8217;ll see a disturbing pattern.  These are all terms that spammers would use to locate blogs that are powered by WordPress and accept comments.</p>
<p>What&#8217;s most disturbing is the fact that the relative volumes of the 5 spam terms add up to 72, while people legitamately searching for WordPress are only 88 in relative volume.  That means the spammers almost outnumber real people searching for WordPress!</p>
<p>But this article isn&#8217;t meant to employ scare tactics.  It&#8217;s not a scary situation once you get your blog setup correctly.  So let&#8217;s talk about setting your WP blog up to avoid comment spam.</p>
<h2>How to Kill Comment Spam</h2>
<ol>
<li>Have <a href="http://wordpress.org/extend/plugins/akismet/">Akismet</a> Set-Up</li>
<li>The stats above would imply you should remove the &#8216;powered by wordpress&#8217; and &#8216;leave a comment&#8217; text from your site.  I&#8217;ve never tested it before, but it can&#8217;t hurt!</li>
<li>Finally, if your spam is coming from a contact form and not from a comment form, read <a href="http://www.bradleyspencer.com/2011/protecting-contact-form-7-from-spam/">Protecting Contact Form 7 from Spam</a>.  It&#8217;s a bit more involved to protect your contact form than your comments form, but it&#8217;s well worth the time.</li>
</ol>
<div>Do you have any suggestions for cutting down on WordPress spam comments?  Let me know in the comments section below!</div>
<p><a href="http://www.bradleyspencer.com/2012/comment-spam/">WordPress Comment Spam: How to get less comment spam on your WP Blog</a> is a post from: <a href="http://www.bradleyspencer.com">WordPress Consulting &amp; SEO</a> which runs <a href='http://www.bradleyspencer.com/2009/discounts-the-thesis-theme-for-wordpress-coupon-for-free-extras/'>Thesis Theme</a> with <a href='http://wordpresslandingpage.com/'>WordPress Landing Page Theme</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bradleyspencer.com/2012/comment-spam/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SEO Tip: How To Recover From Panda</title>
		<link>http://www.bradleyspencer.com/2011/seo-tip-how-to-recover-from-panda/</link>
		<comments>http://www.bradleyspencer.com/2011/seo-tip-how-to-recover-from-panda/#comments</comments>
		<pubDate>Fri, 30 Sep 2011 18:12:05 +0000</pubDate>
		<dc:creator>Bradley</dc:creator>
				<category><![CDATA[internet-marketing]]></category>
		<category><![CDATA[search-engine-optimization]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wordpress consulting]]></category>

		<guid isPermaLink="false">http://www.bradleyspencer.com/?p=1747</guid>
		<description><![CDATA[There is a lot of of advice about recovering from Panda, but I felt like this advice from Mike Gordon, the Toronto SEO Guy, was the most elegant: In most cases, sites that have been hit with Panda were over-optimizing their on-page factors (keyword spamming) with the intention of &#8216;gaming&#8217; Google while offering no additional [...]<p><a href="http://www.bradleyspencer.com/2011/seo-tip-how-to-recover-from-panda/">SEO Tip: How To Recover From Panda</a> is a post from: <a href="http://www.bradleyspencer.com">Wordpress Consulting &amp; SEO</a> which runs <a href='http://www.bradleyspencer.com/2009/discounts-the-thesis-theme-for-wordpress-coupon-for-free-extras/'>Thesis Theme</a> with <a href='http://wordpresslandingpage.com/'>Wordpress Landing Page Theme</a></p>
]]></description>
			<content:encoded><![CDATA[<p></p><p>There is a lot of of advice about recovering from Panda, but I felt like this advice from Mike Gordon, the <a title="toronto seo guy" href="http://torontoseoguy.com/">Toronto SEO Guy</a>, was the most elegant:<span id="more-1747"></span></p>
<blockquote><p>In most cases, sites that have been hit with Panda were over-optimizing their on-page factors (keyword spamming) with the intention of &#8216;gaming&#8217; Google while offering no additional value (or lesser value) to visitors. Other sites got hit for using link farms and other forms of paid links that are against Google&#8217;s policies, and again, are designed to manipulate the engine without offering benefit to the user.</p>
<p>For sites in the above scenario, it&#8217;s time to recognize that they&#8217;ve gotten away with undeserved traffic for a long time and now they&#8217;re paying the price. What they need to do is kill the link farms and paid links (which are almost always crappy links anyway) and edit their pages to remove the over-optimization.</p>
<p>So, for example, there&#8217;s no need for a 5-10% &#8216;keyword density&#8217; (keyword density is a myth anyway). Bottom line here is to just write naturally without thinking much about keyword usage and you&#8217;ll be fine. Of course, you do need your primary keyword(s) in the title tag, body text, etc., but 2-3 instances of the keyword in the body text is all you need. More than that really doesn&#8217;t help contrary to popular belief &#8211; but it might hurt (and probably will).</p>
<p>Most importantly, sites need to pay more attention to structural issues (which in most cases haven&#8217;t been an issue for Panda, but having a good site structure will go a long way to helping a site prevail post Panda). For example: ensure that there are no duplicate content issues (the vast majority of sites have this problem to some degree in Google&#8217;s eyes and don&#8217;t even know it e.g. URL issues, parameter issues, etc.); ensure that there are minimal pages returning 404s or other errors; have a user friendly and consistent global navigation; remove unnecessary keyword-rich footer links sitewide; etc.</p>
<p>In a nutshell, site owners/webmasters need to ask themselves this question when creating/editing anything on their website: Does the change I&#8217;m about to make help Google *and* users, or just Google? If it&#8217;s the latter, you need to seriously reconsider whether it&#8217;s a wise move. Making websites easier for Google to crawl, understand the content, and index pages &#8211; and making sites more relevant for users &#8211; are still the keys.</p>
<p>Yes, I know, I sound soooo white hat &#8211; and I am &#8211; but I truly believe that in the long term, that&#8217;s what works best (though there will always be smart black hat guys out there who succeed for a period of time, but it&#8217;s getting *much* tougher).</p>
<p>Unfortunately, some legitimate sites got undeservedly Panda&#8217;d. Beyond doing all the kinds of things I&#8217;ve outlined above, they should attempt to contact Google and make their best case. For most of us, this isn&#8217;t easy as Google is not the most responsive company to the little guys (surprise surprise). If you can develop a Google contact through a friend or even via an AdWords rep, you may have a better chance of your message being responded to, and if the request is reasonable then you have a much better chance of a reversal of penalties on the SEO field.</p></blockquote>
<p><a href="http://www.bradleyspencer.com/2011/seo-tip-how-to-recover-from-panda/">SEO Tip: How To Recover From Panda</a> is a post from: <a href="http://www.bradleyspencer.com">WordPress Consulting &amp; SEO</a> which runs <a href='http://www.bradleyspencer.com/2009/discounts-the-thesis-theme-for-wordpress-coupon-for-free-extras/'>Thesis Theme</a> with <a href='http://wordpresslandingpage.com/'>WordPress Landing Page Theme</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bradleyspencer.com/2011/seo-tip-how-to-recover-from-panda/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Much ado about nothing: Google targets content farms in a recent algorithm change</title>
		<link>http://www.bradleyspencer.com/2011/1691/</link>
		<comments>http://www.bradleyspencer.com/2011/1691/#comments</comments>
		<pubDate>Thu, 03 Mar 2011 21:41:38 +0000</pubDate>
		<dc:creator>Bradley</dc:creator>
				<category><![CDATA[internet-marketing]]></category>
		<category><![CDATA[Misc.]]></category>
		<category><![CDATA[search-engine-optimization]]></category>

		<guid isPermaLink="false">http://www.bradleyspencer.com/?p=1691</guid>
		<description><![CDATA[I&#8217;d like to contribute my personal two cents to the hot topic of the last week: Google&#8217;s Content Farm Algorithm Change. The Background: Google makes algorithm changes a few times per week. Usually their effects are pretty small, but this latest change was relatively big. Google makes a big show of it and lots of [...]<p><a href="http://www.bradleyspencer.com/2011/1691/">Much ado about nothing: Google targets content farms in a recent algorithm change</a> is a post from: <a href="http://www.bradleyspencer.com">Wordpress Consulting &amp; SEO</a> which runs <a href='http://www.bradleyspencer.com/2009/discounts-the-thesis-theme-for-wordpress-coupon-for-free-extras/'>Thesis Theme</a> with <a href='http://wordpresslandingpage.com/'>Wordpress Landing Page Theme</a></p>
]]></description>
			<content:encoded><![CDATA[<p></p><div id="attachment_1694" class="wp-caption alignright" style="width: 300px">
	<a href="http://www.bradleyspencer.com/wp-content/uploads/2011/03/2989113455_b3229ce531.jpeg"><img class="size-medium wp-image-1694" title="2989113455_b3229ce531" src="http://www.bradleyspencer.com/wp-content/uploads/2011/03/2989113455_b3229ce531-300x199.jpg" alt="" width="300" height="199" /></a>
	<p class="wp-caption-text">That&#39;s my kind of farm!</p>
</div>
<p>I&#8217;d like to contribute my personal two cents to the hot topic of the last week: Google&#8217;s Content Farm Algorithm Change.</p>
<h3>The Background:</h3>
<p>Google makes algorithm changes a few times per week.  Usually their effects are pretty small, but this latest change was relatively big.  Google makes a big show of it and lots of webmasters feel wrongly targetted.</p>
<p>But why should this algorithm change be any more public than the others?</p>
<p>I believe Google intended to make a big public statement with this change.  It was a PR move as much as an algorithm change.  There have been grumblings over the last few months that Google&#8217;s results are bad and getting worse.  The allegation is that SEO&#8217;s are building pages specifically to rank high, and they are doing so successfully.  The grumblings got loud enough that Google&#8217;s Search Quality group stepped in and <a href="http://www.mattcutts.com/blog/google-2000-vs-google-2011/">made some comments</a>.</p>
<h3>The Algo Change:</h3>
<p>So Google made a big scene with a &#8216;Content Farm&#8217; algo change.  The search results shift and push &#8216;content farms&#8217; out of the top rankings.</p>
<p>What exactly is a content farm anyways?  We might want to define &#8216;<em>content farm</em>&#8216; because good SEO writing looks surpringly similar to what everyone is calling a <em>content farm</em>.</p>
<p><a href="http://www.mattcutts.com/blog/google-2000-vs-google-2011/">SEOBook.com</a> make an excellent point about the similarity between content farms and all other SEO writing:</p>
<blockquote><p>&#8220;a lot of SEO content in not that different, and any algorithm that targets Demand Media&#8217;s [an alleged content farm] content isn&#8217;t going to see any difference. Keyword traffic stream identical to title tag? Yep. A couple of hundred words? Yep. SEO format? Yep. Repeats keywords and keyword phrases a few times? Yep.&#8221;</p></blockquote>
<p>What makes these guys a content farm and the rest of us just followers of Search Engine best practices?  Is it funding?  Our SE ranking success?  At what point does a &#8216;well-SEO&#8217;d site&#8217; turn into a content farm?<span id="more-1691"></span></p>
<h3>A Mental Experiment:</h3>
<p>Let&#8217;s do a mental experiment.</p>
<p>Let&#8217;s imagine for a moment that these content farms aren&#8217;t stuck in &#8216;content farm mode&#8217;.  They can change their content at any time and are well-funded enough to make that happen at the drop of a hat.</p>
<p>And let&#8217;s, for a moment, refer to them as &#8216;Highly Agile Content Producers&#8217;.  Why would we call them that?  Because these are organizations who know very well what Google ranks well.  They also write to capitalize on that knowledge.  So that makes them smart, and since they tend to stay at the top over hundreds or thousands of algo changes, that implies they are agile.</p>
<p>Finally, let&#8217;s imagine these content farms have been prepared for this change for a while.  Maybe they are surprised that Google, in 2011, still ranked crappy formulaic articles above everything else.  But they didn&#8217;t change their content because it was working.  Maybe they breathed a big sigh of relief when this algo change happened and now they are ready to unravel the new algo.</p>
<p>You&#8217;ve probably already realized where this mental experiment is headed: What we call &#8216;content farms&#8217; are just highly agile, well-funded, organizations who are excellent at producing content that search engines like.  And I&#8217;m sure that any CEO worth his salt saw this change coming for years.</p>
<h3>The Conclusion:</h3>
<p>When all the dust has settles, I suspect everything will return to normal.  Google gets to make a show of how they are concerned about Search Quality and all of the &#8216;content farms&#8217; re-write their content to rank again.  Commenter <a href="http://www.sistrix.com/blog/985-google-farmer-update-quest-for-quality.html">James Bauer at sistrix</a> puts it this way:</p>
<blockquote><p>&#8220;Kudos to the changes. But like many Google changes in the past, marketers will soon &#8220;discover&#8221; the new algorithm and employ immediate changes to &#8220;beat&#8221; Google at their own game. Google will change the rules again. And the entire cycle repeats itself. Rinse. Wash. Repeat.&#8221;</p></blockquote>
<p>If you were keeping track of the rhetorical questions, you&#8217;ll notice that there is one outstanding.  It&#8217;s &#8220;At what point does a &#8216;well-SEO&#8217;d site&#8217; turn into a content farm?&#8221;  Unfortunately, I think the answer is: &#8220;When you do a good job of it.&#8221;</p>
<p><a href="http://www.bradleyspencer.com/2011/1691/">Much ado about nothing: Google targets content farms in a recent algorithm change</a> is a post from: <a href="http://www.bradleyspencer.com">WordPress Consulting &amp; SEO</a> which runs <a href='http://www.bradleyspencer.com/2009/discounts-the-thesis-theme-for-wordpress-coupon-for-free-extras/'>Thesis Theme</a> with <a href='http://wordpresslandingpage.com/'>WordPress Landing Page Theme</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bradleyspencer.com/2011/1691/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>7 Things NOT to Do When You Start a Business Online</title>
		<link>http://www.bradleyspencer.com/2011/7-things-not-to-do-when-you-start-a-business-online/</link>
		<comments>http://www.bradleyspencer.com/2011/7-things-not-to-do-when-you-start-a-business-online/#comments</comments>
		<pubDate>Sat, 22 Jan 2011 20:40:57 +0000</pubDate>
		<dc:creator>Bradley</dc:creator>
				<category><![CDATA[internet-marketing]]></category>
		<category><![CDATA[marketing research]]></category>

		<guid isPermaLink="false">http://www.bradleyspencer.com/?p=1648</guid>
		<description><![CDATA[Lately I&#8217;ve been reflecting a lot on the things I&#8217;ve learned from the last round of projects and websites I&#8217;ve been working on.  I wanted to distill some advice from the experiences so as to avoid making the same mistakes again in the future.  Hopefully this list helps you, too. 7 Things NOT to Do [...]<p><a href="http://www.bradleyspencer.com/2011/7-things-not-to-do-when-you-start-a-business-online/">7 Things NOT to Do When You Start a Business Online</a> is a post from: <a href="http://www.bradleyspencer.com">Wordpress Consulting &amp; SEO</a> which runs <a href='http://www.bradleyspencer.com/2009/discounts-the-thesis-theme-for-wordpress-coupon-for-free-extras/'>Thesis Theme</a> with <a href='http://wordpresslandingpage.com/'>Wordpress Landing Page Theme</a></p>
]]></description>
			<content:encoded><![CDATA[<p></p><p>Lately I&#8217;ve been reflecting a lot on the things I&#8217;ve learned from the last round of projects and websites I&#8217;ve been working on.  I wanted to distill some advice from the experiences so as to avoid making the same mistakes again in the future.  Hopefully this list helps you, too.</p>
<h2>7 Things NOT to Do When You Start a Business Online</h2>
<h3>1. Make projections based on the size of the market.</h3>
<p>When you are predicting the revenues for your business, don&#8217;t start with the size of the market.</p>
<p>Let&#8217;s take an offline example of a Lawn Mowing company:</p>
<p>In Columbus, where I live, let&#8217;s do a very rough estimate and say that the amount of money spent on commercial lawnmowing in Columbus is 20 Million dollars per year.</p>
<p>$20,000,000 spent on lawnmowing</p>
<p>So the aspiring lawnmower comes in and says, &#8216;Geez, if I just get 5% of the market then I&#8217;ll be bringing in 1 million dollars per year.&#8217;  You can do the math as many times as you want and it will always be a million bucks.  And 5% doesn&#8217;t really sound like that high of a number, right?</p>
<p>$20,000,000 x 5% = $1,000,000</p>
<p>The truth is that getting 5% of the lawnmowing market would be very difficult.  While this may be apparent in an industry as transparent and easy to understand as lawnmowing, the same idea holds true in an online business.  But, for some reason, online entrepreneurs tend to consistently overestimate their future revenues this way.</p>
<p>So what should you do instead?</p>
<p><span id="more-1648"></span>I suggest preparing your projections the opposite way.  On day one, you have no clients.  If you are a lawnmower, you may be able to hand out 300 flyers in one day.  Maybe 1% of these will call you for an estimate.</p>
<p>300 flyers x 1%= 3 Estimates per day</p>
<p>Of those people who get an estimate, lets say 2/3 will sign on as a customer.</p>
<p>3 estimates x (2/3) Turn into clients= 2 Clients per day</p>
<p>So if you do an eight hour day of handing out 300 flyers, you&#8217;ll hopefully get 2 clients.  Add to this that there may only be one month per year when people are looking for a lawnmower (early spring), and that means that (assuming you aren&#8217;t hiring a flyer company) you can get about 60 clients your first year.</p>
<p>30 days x 2 Clients per day x 1 Month = 60 clients per year</p>
<p>As you can see we worked the complete opposite way and came up with a much smaller number.</p>
<p>This process isn&#8217;t meant to depress you.  It isn&#8217;t meant to put down your business idea.  The idea is that if you can find a business that still makes financial sense when you create projections based on the 2nd formula, you&#8217;ve really found something.</p>
<h3>2. Think your concept/product is unique</h3>
<p>I can&#8217;t help but smile when I think of the Segway.  The Segway is maybe the most extreme example of thinking a product is unique.  I&#8217;ll bet the guy who created the Segway truly thought everyone would be using them by 2011.  We all know how that turned out.</p>
<p>A lot of people talk about their business or product before its launch and almost all of them think their&#8217;s will break the mold.  Launching something is so exciting, and thinking it&#8217;s going to break records is part of the fun.  But it&#8217;s rarely true.</p>
<p>I&#8217;ve learned this the hard way.  Almost every business I&#8217;ve been a part of seemed to have a glimmer of this &#8216;break the mold&#8217; at the start.  The early numbers all came back amazing.  Or the business model just seemed so viral&#8230; it had to go big.</p>
<p>But none have defied gravity or broken the mold or set a new record.  Each business eventually matured and- in the best cases- profited some.  And in the worst cases the businesses failed.  Most businesses fail.  That&#8217;s OK.</p>
<p>Create your projections using industry standards.  If the industry average bounce rate is 70%, assume your website&#8217;s bounce rate will be 80%.  If the idea still works or the profit margins are still there, you may be on to something.</p>
<h3>3. Overestimate the value of the idea and underestimate the importance of execution</h3>
<p>I&#8217;ll upset a lot of people for saying this, but:</p>
<p><em>Ideas are almost worthless.  Execution is everything.</em></p>
<p>I&#8217;m sure a lot of people had the idea of brightening up a room after the sun went down, but Edison made it happen.  Friendster is the facebook that didn&#8217;t make it.  There are so many fantastic ideas out in the world, but if there isn&#8217;t precise execution and a bit of luck to give the idea legs, they just remain ideas.</p>
<p>If you don&#8217;t believe me, consider this: When you think of the most successful companies and organizations, do they have better ideas or better execution?  99 out of 100 times it is better execution.</p>
<ul>
<li>Donatoes isn&#8217;t doing anything that special with pizza, but they make a lot of money.</li>
<li>My electric company is the same as all of the others, but they are made what could be considered an obscene profit.</li>
<li>Google did a great job with paid search, but they didn&#8217;t think of it.</li>
</ul>
<p>The list goes on and on.  The moral of the story is to become someone who executes an idea well and you&#8217;ll be better off than &#8216;the idea guy&#8217;.</p>
<h3>4. Partner Unwisely</h3>
<p>I think partners are a good thing.  Partners hold you accountable for delivering what &amp; when you say you are going to.  Partners share your ups and downs.  Without partners, it&#8217;s easy to lose motivation and quit.  Partners are good.</p>
<p>But you have to choose those partners wisely.</p>
<p>Before signing any contracts, I would suggest doing a few pre-projects to get a good feel for how you work with someone.  Pay attention to their email response time and how well they handle stress.  Are they easy to work with?  Do you trust them?  Do they deliver what they say they are going to?</p>
<p>The unfortunate truth is that most people who have enough free time in their lives to start a new business probably aren&#8217;t a good partner.  Of course this isn&#8217;t always the case or else finding a partner would be useless.  But people who are responsible and smart and social and want to start a business usually get picked up by another team or start a business pretty quickly.  It&#8217;s kind of like dating&#8230; there is  a long line of people waiting to date the best of the bunch.  They usually don&#8217;t stay single for long.</p>
<p>So assume that 9 out of 10 potential partners aren&#8217;t a good fit.  Try out 10 different people before you settle on one.  It&#8217;ll make a world of difference.</p>
<h3>5. Skimp on system-building</h3>
<p>If you can make an automated system for any part of your business, do it.  I&#8217;ll show you a great example why:</p>
<p>Whenever someone wants me to change their WordPress site, I always have to send an email explaining all of the logins I need, where to send my payment, how to contact me, etc.</p>
<p>For the first few years (yes, years) of business, I always avoided making a template version of this email.  I was afraid it would seem impersonal or would take a long time to make.</p>
<p>But one day I was looking over my outbound emails and discovered that over time I&#8217;d gotten lazy and wasn&#8217;t explaining myself as well as I could in these emails.  Since I&#8217;d written the same email 50 times, I was skipping over stuff and hurrying through it.  Once I realized that not automating (making a template of) this email was actually making clients&#8217; experience worse, I made a template in 15 minutes that kicked butt and have used it ever since.</p>
<p>After making a template for that email, I started making a template for just about anything I have to type more than I care to.  Some examples are:</p>
<p>- I have an email for people who write and ask me to do something on a website that seems like a good idea but that I don&#8217;t have time to do now.  It&#8217;s kind of a &#8216;Thanks for that great idea, I&#8217;ll put it on my list of todos.&#8217;</p>
<p>- I have an email that explains how to put together a scope of work for a WordPress project.  So when people write me and say, &#8216;I have a WordPress site I want to customize, how much will it cost?&#8217; I can send this email off to them explains how to put together a scope of work.</p>
<p>So take the extra time to make a template of something&#8230; a really good template&#8230; and then use it over and over if you can.  You can always edit the template and fine tune it to make it wonderful.</p>
<h3>6. Expect your business to run on auto-pilot</h3>
<p>The holy grail of every business- particularly online businesses- is that they will run on autopilot.  From the ads you see around the web, you&#8217;d think that just about anyone could build a business that &#8216;runs on autopilot&#8217; online.  I have yet to see even one business that runs by itself.</p>
<p>The nice thing about web businesses is that they are live 24 hours per day, 7 days per week.  So they do exist by themselves.  But a business needs to do more than exist to turn a profit.</p>
<p>The more I work on websites and web businesses, the more they seem like just regular brick and mortar businesses.  Many of the problems and hurdles are the same.</p>
<h3>7. Give up too early</h3>
<p>This website, BradleySpencer.com, has been around for about 5 years now.  For the first couple of years, it didn&#8217;t bring me very many leads.  For the last three years it has done pretty well.  And it continues to bring more leads with each passing month.  I expect it do be doing even better a year from now and into the forseeable future.</p>
<p>But for the first two years (years!), I was working hard on building content and building links with almost no positive reinforcement.  During that time I waited tables and did other odd jobs to make ends meet.</p>
<p>Can your new web business survive if you don&#8217;t get new clients or customers for two years?</p>
<p>The good news is that if you work your butt off for a couple of years, you can start to slack off a bit afte those two years and you&#8217;ll still be getting leads.  But making it to the two year mark can be tough.</p>
<p><strong>I hope this list has been helpful.  Please leave your own &#8216;Thing NOT to do&#8217; in the comments below. </strong></p>
<p><a href="http://www.bradleyspencer.com/2011/7-things-not-to-do-when-you-start-a-business-online/">7 Things NOT to Do When You Start a Business Online</a> is a post from: <a href="http://www.bradleyspencer.com">WordPress Consulting &amp; SEO</a> which runs <a href='http://www.bradleyspencer.com/2009/discounts-the-thesis-theme-for-wordpress-coupon-for-free-extras/'>Thesis Theme</a> with <a href='http://wordpresslandingpage.com/'>WordPress Landing Page Theme</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bradleyspencer.com/2011/7-things-not-to-do-when-you-start-a-business-online/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Protecting Contact Form 7 from Spam</title>
		<link>http://www.bradleyspencer.com/2011/protecting-contact-form-7-from-spam/</link>
		<comments>http://www.bradleyspencer.com/2011/protecting-contact-form-7-from-spam/#comments</comments>
		<pubDate>Mon, 17 Jan 2011 17:32:11 +0000</pubDate>
		<dc:creator>Bradley</dc:creator>
				<category><![CDATA[internet-marketing]]></category>
		<category><![CDATA[usability]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wordpress consulting]]></category>
		<category><![CDATA[wordpress plugins]]></category>
		<category><![CDATA[wordpress tutorial]]></category>

		<guid isPermaLink="false">http://www.bradleyspencer.com/?p=1645</guid>
		<description><![CDATA[Contact Form 7 is my favorite free WordPress plugin for making (you guessed it&#8230;) Contact Forms.  It&#8217;s a very popular plugin, and that means that spammers have decided it&#8217;s worth their hassle to write some scripts to spam you through Contact Form 7. Assuming your viagra need are sufficiently filled, you won&#8217;t be needing to [...]<p><a href="http://www.bradleyspencer.com/2011/protecting-contact-form-7-from-spam/">Protecting Contact Form 7 from Spam</a> is a post from: <a href="http://www.bradleyspencer.com">Wordpress Consulting &amp; SEO</a> which runs <a href='http://www.bradleyspencer.com/2009/discounts-the-thesis-theme-for-wordpress-coupon-for-free-extras/'>Thesis Theme</a> with <a href='http://wordpresslandingpage.com/'>Wordpress Landing Page Theme</a></p>
]]></description>
			<content:encoded><![CDATA[<p></p><p><a href="http://wordpress.org/extend/plugins/contact-form-7/">Contact Form 7</a> is my favorite free WordPress plugin for making (you guessed it&#8230;) Contact Forms.  It&#8217;s a very popular plugin, and that means that spammers have decided it&#8217;s worth their hassle to write some scripts to spam you through Contact Form 7.</p>
<p>Assuming your viagra need are sufficiently filled, you won&#8217;t be needing to see these emails.  So let&#8217;s figure out how to stop those spam messages from getting to you without making life more difficult for the real people who might want to use your form.</p>
<p>Based on my experience, these three changes should help really cut down on spam in Contact Form 7.</p>
<ol>
<li><strong>Spam filtering with Akismet:</strong> Follow <a href="http://contactform7.com/2009/12/01/spam-filtering-with-akismet/">these instructions</a> to make Contact Form 7 use akismet to test and see if the submission is spam.</li>
<li><strong>Install Bad Behavior Plugin: </strong>Install <a href="http://wordpress.org/extend/plugins/bad-behavior/">Bad Behavior</a>.  You can read more about BB, but it works in a unique way to test for spam.</li>
<li><strong>Install Cookies for Comments</strong>: Because most spam bots&#8217; browsers can&#8217;t accept cookies, this <a href="http://wordpress.org/extend/plugins/cookies-for-comments/">plugin</a> will try to set a cookie on a user and if the cookie isn&#8217;t there then it considers it spam.  The plugin also tests to see how long it took the user to leave the comment.  If the commenter took a very short time (think a second or two) to leave a comment, chances are it&#8217;s spam.</li>
</ol>
<p>Once these three changes have been made, your contact form should let much less spam through.  Of course, if you want to try a paid plugin for contact forms, I personally really love <a href="http://www.bradleyspencer.com/2009/gravity-forms-for-wordpress-get-a-free-ebook-and-10-rebate/">Gravity Forms</a>.</p>
<p><a href="http://www.bradleyspencer.com/2011/protecting-contact-form-7-from-spam/">Protecting Contact Form 7 from Spam</a> is a post from: <a href="http://www.bradleyspencer.com">WordPress Consulting &amp; SEO</a> which runs <a href='http://www.bradleyspencer.com/2009/discounts-the-thesis-theme-for-wordpress-coupon-for-free-extras/'>Thesis Theme</a> with <a href='http://wordpresslandingpage.com/'>WordPress Landing Page Theme</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bradleyspencer.com/2011/protecting-contact-form-7-from-spam/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The One-Minute SEO Plan</title>
		<link>http://www.bradleyspencer.com/2010/the-one-minute-seo-plan/</link>
		<comments>http://www.bradleyspencer.com/2010/the-one-minute-seo-plan/#comments</comments>
		<pubDate>Wed, 01 Sep 2010 19:28:39 +0000</pubDate>
		<dc:creator>Bradley</dc:creator>
				<category><![CDATA[internet-marketing]]></category>
		<category><![CDATA[marketing research]]></category>
		<category><![CDATA[Misc.]]></category>
		<category><![CDATA[One-Minute Guides]]></category>
		<category><![CDATA[search-engine-optimization]]></category>
		<category><![CDATA[wordpress consulting]]></category>

		<guid isPermaLink="false">http://www.bradleyspencer.com/?p=1462</guid>
		<description><![CDATA[Premise: There are plenty of times when you&#8217;d want to tell somehow how they can improve the Search Engine rankings of their site quickly. I&#8217;ve found that with most lay-people, you have about one minute before their eyes gloss over. So below is my attempt at giving someone the best tips for SEO that can [...]<p><a href="http://www.bradleyspencer.com/2010/the-one-minute-seo-plan/">The One-Minute SEO Plan</a> is a post from: <a href="http://www.bradleyspencer.com">Wordpress Consulting &amp; SEO</a> which runs <a href='http://www.bradleyspencer.com/2009/discounts-the-thesis-theme-for-wordpress-coupon-for-free-extras/'>Thesis Theme</a> with <a href='http://wordpresslandingpage.com/'>Wordpress Landing Page Theme</a></p>
]]></description>
			<content:encoded><![CDATA[<p></p><h2>Premise:</h2>
<p>There are plenty of times when you&#8217;d want to tell somehow how they can improve the Search Engine rankings of their site quickly.  I&#8217;ve found that with most lay-people, you have about one minute before their eyes gloss over.</p>
<p>So below is my attempt at giving someone the best tips for SEO that can be read in about a minute.  Of course it isn&#8217;t all-encompassing, nor is it meant to be.  But hell, it&#8217;s short.</p>
<h2>The One-Minute SEO Plan:</h2>
<p><img class="size-medium wp-image-1463 alignright" title="Mechanical_Stopwatch" src="http://www.bradleyspencer.com/wp-content/uploads/2010/09/Mechanical_Stopwatch-300x300.jpg" alt="" width="180" height="180" /></p>
<p>SEO means &#8216;search engine optimization&#8217;.  The goal is to get more targetted traffic to your website specifically through Search Engines.</p>
<p>There are two parts to SEO.  These are 1) What is happening ON your site that the search engines can scan and see and that helps them determine what your website is about and 2) What and who are linking to your site on other parts of the internet.  The Search Engines look the number of links to your site as a gauge of how popular your site is.  Search Engines tend to like sites with many links from other popular websites.</p>
<p><strong><span id="more-1462"></span>Improving #1: Your On-Site Factors</strong></p>
<p>Write interesting content you believe people would like to share and link to.  Try to use the same words when you are writing that other people would use when they are searching for your article.  If you aren&#8217;t sure what words other people use to search, you can us keyword research tools to help narrow it down.</p>
<p>Your page titles are especially important, so make sure the titles have a lot of the words that other people would use to search for a page like the one you are writing.</p>
<p>Add interesting and new content often.  Make content that humans will like, and the search engines should follow.</p>
<p><strong>Improving #2: Other Sites Linking to You</strong></p>
<p>You want lots of sites to link to your site.</p>
<p>Think about organizations, clubs, or websites that may benefit from linking to you and then email them asking for a link.  If you are part of a forum, you&#8217;ll want to add a link to your site in your signature.  If you run multiple websites, you may want to link from each website to each of the other websites.  If you have friends with websites, ask them to link to your website or you can trade links with each other.</p>
<p>There are many ways to get links to your site that you can come across online.  So keep your eyes open and try to get lots of links.</p>
<p>Remember this with both on-page and off-page factors: Making a great website that people like is the best starting point for a site that does well in the search engines.  So never sacrafice the user&#8217;s experience in favor of something for the search engines.</p>
<p><a href="http://www.bradleyspencer.com/2010/the-one-minute-seo-plan/">The One-Minute SEO Plan</a> is a post from: <a href="http://www.bradleyspencer.com">WordPress Consulting &amp; SEO</a> which runs <a href='http://www.bradleyspencer.com/2009/discounts-the-thesis-theme-for-wordpress-coupon-for-free-extras/'>Thesis Theme</a> with <a href='http://wordpresslandingpage.com/'>WordPress Landing Page Theme</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bradleyspencer.com/2010/the-one-minute-seo-plan/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>5 Surprising Lessons Learned by User Testing</title>
		<link>http://www.bradleyspencer.com/2010/5-surprising-lessons-from-user-testing/</link>
		<comments>http://www.bradleyspencer.com/2010/5-surprising-lessons-from-user-testing/#comments</comments>
		<pubDate>Mon, 30 Aug 2010 18:53:26 +0000</pubDate>
		<dc:creator>Bradley</dc:creator>
				<category><![CDATA[internet-marketing]]></category>
		<category><![CDATA[marketing research]]></category>
		<category><![CDATA[Misc.]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[user testing]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wordpress consulting]]></category>
		<category><![CDATA[wordpress plugins]]></category>
		<category><![CDATA[wordpress tutorial]]></category>

		<guid isPermaLink="false">http://www.bradleyspencer.com/?p=1444</guid>
		<description><![CDATA[&#8216;It&#8217;s not what you say, it&#8217;s what people hear.&#8217; -Frank Luntz Last week they were running a deal at AppSumo that made the cost of user testing low enough that it would be silly not to try it.  So I decided to give it a go and I learned a lot about how people use [...]<p><a href="http://www.bradleyspencer.com/2010/5-surprising-lessons-from-user-testing/">5 Surprising Lessons Learned by User Testing</a> is a post from: <a href="http://www.bradleyspencer.com">Wordpress Consulting &amp; SEO</a> which runs <a href='http://www.bradleyspencer.com/2009/discounts-the-thesis-theme-for-wordpress-coupon-for-free-extras/'>Thesis Theme</a> with <a href='http://wordpresslandingpage.com/'>Wordpress Landing Page Theme</a></p>
]]></description>
			<content:encoded><![CDATA[<p></p><blockquote><p>&#8216;It&#8217;s not what you say, it&#8217;s what people hear.&#8217; -Frank Luntz</p></blockquote>
<p>Last week they were running a deal at <a title="appsumo" href="http://www.appsumo.com/">AppSumo</a> that made the cost of user testing low enough that it would be silly not to try it.  So I decided to give it a go and I learned a lot about how people use my websites as a result. I&#8217;m going to share the 5 most intriguing with you today.</p>
<p>As an SEO, I&#8217;m usually way more focused on just getting traffic than what happens to that traffic when it hits the site. But even rough &#8216;back-of-the-napkin&#8217; math can convince the most skeptical that user testing is cheaper and more effective than trying to get more traffic to a poorly-designed site.</p>
<p>For that reason, I encourage everyone to try user testing on their own sites.  Yes, this means you.  Try it.  You&#8217;ll be amazed what you find.</p>
<p>Without further ado, let&#8217;s dive in&#8230;<span id="more-1444"></span></p>
<h2>5 Things I Learned With User Testing</h2>
<h3>Quick Links:</h3>
<ol>
<li><a href="#sec1">It&#8217;s all above the fold, baby.</a></li>
<li><a href="#sec2">Common sense won&#8217;t help you here</a></li>
<li><a href="#sec3">400% Changes are Possible</a></li>
<li><a href="#sec4">Make everything clickable</a></li>
<li><a href="#sec5">Simplify</a></li>
</ol>
<h3><a name="sec1"></a>1.  It&#8217;s all above the fold, baby.</h3>
<p><strong>Software Used:</strong> Crazyegg makes software that you can add to your site to see where people click.  Here is what the heatmap looks like for my site:</p>
<div id="attachment_1447" class="wp-caption aligncenter" style="width: 300px">
	<a href="http://www.bradleyspencer.com/wp-content/uploads/2010/08/Screen-shot-2010-08-30-at-1.39.53-PM.png"><img class="size-medium wp-image-1447 " title="Screen shot 2010-08-30 at 1.39.53 PM" src="http://www.bradleyspencer.com/wp-content/uploads/2010/08/Screen-shot-2010-08-30-at-1.39.53-PM-300x218.png" alt="" width="300" height="218" /></a>
	<p class="wp-caption-text">Click to Enlarge</p>
</div>
<p>Crazy Egg data can also be viewed a couple of other (really cool) ways:</p>
<div id="attachment_1448" class="wp-caption aligncenter" style="width: 300px">
	<a href="http://www.bradleyspencer.com/wp-content/uploads/2010/08/Screen-shot-2010-08-30-at-1.40.13-PM.png"><img class="size-medium wp-image-1448" title="Screen shot 2010-08-30 at 1.40.13 PM" src="http://www.bradleyspencer.com/wp-content/uploads/2010/08/Screen-shot-2010-08-30-at-1.40.13-PM-300x221.png" alt="" width="300" height="221" /></a>
	<p class="wp-caption-text">Confetti View.  Click to enlarge.</p>
</div>
<p>This is called the confetti view and gives a more granular look at where people are clicking.</p>
<div id="attachment_1449" class="wp-caption aligncenter" style="width: 300px">
	<a href="http://www.bradleyspencer.com/wp-content/uploads/2010/08/Screen-shot-2010-08-30-at-1.40.34-PM.png"><img class="size-medium wp-image-1449" title="Screen shot 2010-08-30 at 1.40.34 PM" src="http://www.bradleyspencer.com/wp-content/uploads/2010/08/Screen-shot-2010-08-30-at-1.40.34-PM-300x215.png" alt="" width="300" height="215" /></a>
	<p class="wp-caption-text">List View.  Click to enlarge.</p>
</div>
<p>And this is the list view which gives even more refined data about your user&#8217;s click path.</p>
<p><strong>The Lesson: </strong>If you want someone to see something, put it above the fold.</p>
<p>This lesson sounds so simple, but it&#8217;s so easy to forget.  People don&#8217;t tend to go below the fold unless they are really interested in what they are reading.  And how do they get interested?  Something above the fold grabs their attention.</p>
<h3><a name="sec2"></a>2.  Common sense won&#8217;t help you here.</h3>
<p><strong>The Software:</strong> <a href="http://visualwebsiteoptimizer.com/">Visual Website Optimizer</a> is a fantastic web application that allows you to split-test different versions of a page and see which one does best.  Of course, you get to decide what &#8216;does best&#8217; means, and exactly what you want to test too.  So it&#8217;s a very versatile tool.</p>
<p>For my first test, I set-up a test to see how the &#8216;Secure&#8217; image in the sidebar (screenshots below) of a coupon site worked.  We tested to see what effect the &#8216;Secure&#8217; image had on people clicking on the coupon button.</p>
<div id="attachment_1450" class="wp-caption aligncenter" style="width: 300px">
	<a href="http://www.bradleyspencer.com/wp-content/uploads/2010/08/vwowith.png"><img class="size-medium wp-image-1450" title="vwowith" src="http://www.bradleyspencer.com/wp-content/uploads/2010/08/vwowith-300x191.png" alt="" width="300" height="191" /></a>
	<p class="wp-caption-text">With the secure image... Click to enlarge</p>
</div>
<p>The thumbnail above HAS the secure image.  The thumbnail below does NOT have the secure image.</p>
<div id="attachment_1451" class="wp-caption aligncenter" style="width: 300px">
	<a href="http://www.bradleyspencer.com/wp-content/uploads/2010/08/vwowithout.png"><img class="size-medium wp-image-1451" title="vwowithout" src="http://www.bradleyspencer.com/wp-content/uploads/2010/08/vwowithout-300x232.png" alt="" width="300" height="232" /></a>
	<p class="wp-caption-text">This does NOT have the secure image.  Click to enlarge.</p>
</div>
<p>Visual Website Optimizer gave half of the visitors one version, and half the other version and then keeps track of who clicked on the coupon button.  Ready for the results?</p>
<p><strong>The Lesson:</strong> Can you guess which version won?  It was the version <em>without the secure button</em>.  And the difference between the two versions is HUGE.  (I&#8217;ll tell you exactly how big the difference once in Lesson #3.)</p>
<p>So with the knowledge that a small change can make a huge difference, I&#8217;m trying tests on many sites.  In fact, I&#8217;m currently running a test to see if having my photo in the sidebar of this very site makes people stick around longer.</p>
<p>Studies say that it should keep people on site longer (they feel like you are a real person if they see your photo), but maybe for this site (and this face&#8230; haha) it won&#8217;t help.  We&#8217;ll just have to see!</p>
<h3><a name="sec3"></a>3.  400% Changes are Possible</h3>
<p><strong>The Software: </strong>Used Visual Website Optimizer and the testing conditions as described in Lesson #2 above&#8230;</p>
<p><strong>The Lesson: </strong>If you think that user testing is a matter of very small changes over a long time, you might be surprised to learn that I had a 400% increase in conversions in 3 days.</p>
<p>By simply removing the &#8216;Secure&#8217; button in the sidebar of the coupon site described above, a whopping 40% more people clicked on the coupon link.  It seems possible that almost every site has a few elements that, if added or removed, would make equally as large a difference.  What does your site have that is stopping it from converting 4x more users?</p>
<h3><a name="sec4"></a>4.  Make everything clickable</h3>
<p><strong>The Software:</strong> I used CrazyEgg as described in Lesson #1 (above) to learn this lesson.</p>
<p><strong>The Lesson:</strong> People click on everything that interests them.  Header images, titles, pictures, everything.  If you can, make something happen when they click on it or hover over it.  Give the user some interaction to show that they CAN click it.</p>
<p>A site that does this really well without sacraficing simplicity is <a href="http://daringfireball.net/">Daring Fireball</a>.  When you roll around the screen, the background color of the links changes.  It&#8217;s subtle and elegant.  And you never are wondering if something is a link or not.</p>
<h3><a name="sec5"></a>5.  Simplify</h3>
<p><strong>The Software:</strong> We used <a href="http://www.usertesting.com/">UserTesting.com</a> to learn this lesson.  UserTesting.com will take your website and a set of questions you create about your website and send a real-live user through your website.  They user is equipped with a microphone and screen recording software and &#8216;talks&#8217; their way through your site.  It was a huge eye-opener.</p>
<p><strong>The Lesson:</strong> Every site can benefit from simplicity.  99% of users are on your site to learn something, get some info, or maybe check something off of their todo list.  People don&#8217;t want to learn a new design when they come to your site. So make it easy as hell to use your site.</p>
<h3>Additional Resources:</h3>
<p>If user testing sounds like it might help your site, I would really suggest you check out these resources:</p>
<ul>
<li><a href="http://briancray.com/">BrianCray.com</a> A Usability Guru</li>
<li><a href="http://www.useit.com/">UseIt.com</a> The usability bible</li>
<li><a href="http://phpabtest.com/">PHP AB Test</a> This lets you split test on the server-side</li>
<li><a href="http://developer.yahoo.com/ypatterns/"> Yahoo Design Library</a>A reference for how people expect your site to work.</li>
</ul>
<p><a href="http://www.bradleyspencer.com/2010/5-surprising-lessons-from-user-testing/">5 Surprising Lessons Learned by User Testing</a> is a post from: <a href="http://www.bradleyspencer.com">WordPress Consulting &amp; SEO</a> which runs <a href='http://www.bradleyspencer.com/2009/discounts-the-thesis-theme-for-wordpress-coupon-for-free-extras/'>Thesis Theme</a> with <a href='http://wordpresslandingpage.com/'>WordPress Landing Page Theme</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bradleyspencer.com/2010/5-surprising-lessons-from-user-testing/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>7 Things I Learned from Attending the Affiliate Summit East Conference.</title>
		<link>http://www.bradleyspencer.com/2010/7-things-i-learned-from-attending-the-affiliate-summit-east-conference/</link>
		<comments>http://www.bradleyspencer.com/2010/7-things-i-learned-from-attending-the-affiliate-summit-east-conference/#comments</comments>
		<pubDate>Wed, 18 Aug 2010 16:46:56 +0000</pubDate>
		<dc:creator>Bradley</dc:creator>
				<category><![CDATA[affiliate summit east]]></category>
		<category><![CDATA[internet-marketing]]></category>
		<category><![CDATA[marketing research]]></category>
		<category><![CDATA[search-engine-optimization]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.bradleyspencer.com/?p=1419</guid>
		<description><![CDATA[Affiliate Summit East is a conference for affiliate marketing. It took place in New York City over the last few days. My two business partners and I took some days off from our day jobs and headed to the conference to strike some deals and learn some tricks that we hoped would improve our business [...]<p><a href="http://www.bradleyspencer.com/2010/7-things-i-learned-from-attending-the-affiliate-summit-east-conference/">7 Things I Learned from Attending the Affiliate Summit East Conference.</a> is a post from: <a href="http://www.bradleyspencer.com">Wordpress Consulting &amp; SEO</a> which runs <a href='http://www.bradleyspencer.com/2009/discounts-the-thesis-theme-for-wordpress-coupon-for-free-extras/'>Thesis Theme</a> with <a href='http://wordpresslandingpage.com/'>Wordpress Landing Page Theme</a></p>
]]></description>
			<content:encoded><![CDATA[<p></p><div id="attachment_1420" class="wp-caption alignleft" style="width: 150px">
	<img class="size-thumbnail wp-image-1420" title="affiliate_summit_east_2009_exhibit_hall" src="http://www.bradleyspencer.com/wp-content/uploads/2010/08/affiliate_summit_east_2009_exhibit_hall-150x150.jpg" alt="" width="150" height="150" />
	<p class="wp-caption-text">Affiliate Summit East, 2010</p>
</div>
<p>Affiliate Summit East is a conference for affiliate marketing.  It took place in New York City over the last few days.  My two business partners and I took some days off from our day jobs and headed to the conference to strike some deals and learn some tricks that we hoped would improve our business model.  Since our business is only 4 months old (though profitable already!) we hoped that getting infused with some good networking and awesome speeches would improve our company&#8217;s trajectory.</p>
<p>The experience was a lot different than I had expected and I&#8217;ve come away with some lessons that may be helpful to young business owners and people new to conferences.  So if you are a veteran conference-goer, you may disagree with my assumptions.  For the rest of us, maybe you can learn from my mistakes.</p>
<p>First of all, I want to say that the trip was a ton of fun.  The folks who put it on are brilliant and the quality of the conference isn&#8217;t in question at all.  So kudos to all of the folks behind ASE.<span id="more-1419"></span></p>
<h2>If I had it To Do Over Again&#8230;</h2>
<h3>Get The Good Pass:</h3>
<p>We chose the silver passes because they were the cheapest (although they were still $99 for early bird).  The cheap passes got us into the lobbies and area with all of the vendors and a few keynotes.  That&#8217;s it.</p>
<p>If you are mainly coming to strike up some deals, then maybe this is the only badge you need.  But if you want to see anyone speak, you&#8217;d better go up to at least the diamond or platinum.  My partner had a Gold pass and that still only got him access to a handful of speeches.</p>
<h3>Know What You Want:</h3>
<p>We went into the conference expecting there to be a lot more direction.  But basically it&#8217;s like a huge bizaare of vendors and people trying to get you to do whatever makes them money&#8230; whether or not that makes you money too is for you to decide.</p>
<p>We realized after walking the &#8216;Meet Market&#8217; that our business is fortunate in that we can grow to about 20x our current size without having to make one handshake or in-person deal.  So the Vendors really had nothing to offer us.</p>
<p>Although this meant that the conference may have been less valuable for us, it is a good feeling to know we won&#8217;t have to hit the pavement searching for deals for a long time&#8230; if ever.</p>
<h3>Enjoy the Freebies:</h3>
<p>I actually did enjoy the freebies a lot, but would have liked to more.  There were a lot of open-bar type situations that looked like a lot of fun.  We did end up going to the free Share-A-Sale party on the rooftop of the Empire Hotel.  This was the highlight of my trip, and it helped me to remember how much I love Vodka Gimlets.</p>
<h3>Enjoy The City:</h3>
<p>Make sure to take off from the conference and enjoy the city.  My partners and I did just that on Monday and it was the best day of the trip for me.  This isn&#8217;t to say that the conference wasn&#8217;t great, but you have to enjoy the place you are staying too!</p>
<h3>Use Twitter More:</h3>
<p>I thought twitter was so dumb when it started, but now I love it.  Watching the stream of #ASE10 on twitter would give anyone a never-ending source of stuff to do, people to meet, and insight into what others think about a speech or dinner or anything.  Twitter and conferences are like peanut buttter and jelly.</p>
<h3>Maybe Don&#8217;t Go:</h3>
<p>Truthfully, maybe you don&#8217;t need to go at all.  We likely could have stayed home and gotten a lot more work done in the same amount of time as what we spent in NYC and saved a lot of money.  But we are a newish company and there is plenty more for us to do without outside infulence.  If you are a larger and more mature company that needs to expand and can&#8217;t without in-person sales, then conferences like this are a no-brainer.</p>
<h2>Conclusion:</h2>
<p>ASE was a great time all-and-all.  I&#8217;ce come away knowing that our business can scale a lot <strong>without</strong> having to do any of the things you need a conference for.  And that&#8217;s a great feeling.</p>
<p>I also learned that there are a lot of people making really good money doing affiliate marketing.  That&#8217;s good for my partners and me to see, because it shows you that it&#8217;s do-able.</p>
<h3>What do you think?</h3>
<p>Did you go to Affiliate Summit East?  What would you do differently?</p>
<p><a href="http://www.bradleyspencer.com/2010/7-things-i-learned-from-attending-the-affiliate-summit-east-conference/">7 Things I Learned from Attending the Affiliate Summit East Conference.</a> is a post from: <a href="http://www.bradleyspencer.com">WordPress Consulting &amp; SEO</a> which runs <a href='http://www.bradleyspencer.com/2009/discounts-the-thesis-theme-for-wordpress-coupon-for-free-extras/'>Thesis Theme</a> with <a href='http://wordpresslandingpage.com/'>WordPress Landing Page Theme</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bradleyspencer.com/2010/7-things-i-learned-from-attending-the-affiliate-summit-east-conference/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>What WordPress Problem Do You Have?</title>
		<link>http://www.bradleyspencer.com/2010/what-wordpress-problem-do-you-have/</link>
		<comments>http://www.bradleyspencer.com/2010/what-wordpress-problem-do-you-have/#comments</comments>
		<pubDate>Thu, 12 Aug 2010 22:51:36 +0000</pubDate>
		<dc:creator>Bradley</dc:creator>
				<category><![CDATA[30 Days of Wordpress]]></category>
		<category><![CDATA[internet-marketing]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wordpress consulting]]></category>
		<category><![CDATA[wordpress plugins]]></category>
		<category><![CDATA[wordpress themes]]></category>
		<category><![CDATA[wordpress tutorial]]></category>
		<category><![CDATA[wordpress videos]]></category>

		<guid isPermaLink="false">http://www.bradleyspencer.com/?p=1415</guid>
		<description><![CDATA[Today marks the launch of a refined and updated WordPress Consulting Service specially tailored to quickly and painlessly answer your questions.  You can see more about that service here. I&#8217;ve been doing phone consults with folks for a couple of years now, and have figured out what most people want is really down to earth [...]<p><a href="http://www.bradleyspencer.com/2010/what-wordpress-problem-do-you-have/">What WordPress Problem Do You Have?</a> is a post from: <a href="http://www.bradleyspencer.com">Wordpress Consulting &amp; SEO</a> which runs <a href='http://www.bradleyspencer.com/2009/discounts-the-thesis-theme-for-wordpress-coupon-for-free-extras/'>Thesis Theme</a> with <a href='http://wordpresslandingpage.com/'>Wordpress Landing Page Theme</a></p>
]]></description>
			<content:encoded><![CDATA[<p></p><p>Today marks the launch of a refined and updated <a title="wordpress consulting" href="http://www.bradleyspencer.com/wordpress-consulting/">WordPress Consulting Service</a> specially tailored to quickly and painlessly answer your questions.  You can see more about that service <a href="http://www.bradleyspencer.com/wordpress-consulting/">here</a>.</p>
<p>I&#8217;ve been doing phone consults with folks for a couple of years now, and have figured out what most people want is really <strong>down to earth</strong> advice delivered over the phone.  It&#8217;s sort of like the helpdesk that WordPress doesn&#8217;t have.</p>
<p>So if there is something about your WordPress blog or website that has been bothering you and you really want to fix it, swing on over to the new <a href="http://www.bradleyspencer.com/wordpress-consulting/">WordPress Consulting page</a> and let&#8217;s get your problem fixed.</p>
<p><a href="http://www.bradleyspencer.com/2010/what-wordpress-problem-do-you-have/">What WordPress Problem Do You Have?</a> is a post from: <a href="http://www.bradleyspencer.com">WordPress Consulting &amp; SEO</a> which runs <a href='http://www.bradleyspencer.com/2009/discounts-the-thesis-theme-for-wordpress-coupon-for-free-extras/'>Thesis Theme</a> with <a href='http://wordpresslandingpage.com/'>WordPress Landing Page Theme</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bradleyspencer.com/2010/what-wordpress-problem-do-you-have/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic (Feed is rejected)
Page Caching using disk: enhanced
Database Caching 12/20 queries in 0.042 seconds using disk: basic

Served from: bradleyspencer.com @ 2012-02-08 06:43:38 -->
