<?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>More Than Scratch The Surface &#187; Monetization</title>
	<atom:link href="http://www.scratch99.com/tag/monetization/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.scratch99.com</link>
	<description>A Journey In Web Development</description>
	<lastBuildDate>Sat, 31 Jul 2010 04:51:20 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How To Display Ads Only To Search Visitors</title>
		<link>http://www.scratch99.com/2008/09/avoid-smart-pricing-show-adsense-only-to-search-engine-visitors/</link>
		<comments>http://www.scratch99.com/2008/09/avoid-smart-pricing-show-adsense-only-to-search-engine-visitors/#comments</comments>
		<pubDate>Fri, 19 Sep 2008 12:37:21 +0000</pubDate>
		<dc:creator>Stephen Cronin</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Adsense]]></category>
		<category><![CDATA[hacks]]></category>
		<category><![CDATA[make money online]]></category>
		<category><![CDATA[Monetization]]></category>
		<category><![CDATA[Wordpress Plugins]]></category>

		<guid isPermaLink="false">http://www.scratch99.com/2008/09/avoid-smart-pricing-show-adsense-only-to-search-engine-visitors/</guid>
		<description><![CDATA[Copyright © 2010 Stephen Cronin. Visit the original article at http://www.scratch99.com/2008/09/avoid-smart-pricing-show-adsense-only-to-search-engine-visitors/.In the past, I&#8217;ve written about only showing Google Adsense to search engine visitors, so as to decrease the chance of being smart priced. In this post, you&#8217;ll see how to improve the technique outlined previously, so that you can make more money.  
Note: [...]]]></description>
			<content:encoded><![CDATA[Copyright © 2010 <a href="http://www.scratch99.com">Stephen Cronin</a>. Visit the original article at <a href="http://www.scratch99.com/2008/09/avoid-smart-pricing-show-adsense-only-to-search-engine-visitors/">http://www.scratch99.com/2008/09/avoid-smart-pricing-show-adsense-only-to-search-engine-visitors/</a>.<br /><p>In the past, I&#8217;ve written about <a href="http://www.scratch99.com/2008/01/shylock-adsense-plugin-hack-to-avoid-adsense-smart-pricing/">only showing Google Adsense to search engine visitors</a>, so as to decrease the chance of being <strong>smart priced</strong>. In this post, you&#8217;ll see how to improve the technique outlined previously, so that you can <strong>make more money</strong>.  </p>
<div class="csstextbox1">Note: Although this post is about showing Adsense to search engine visitors, it’s really about determining whether a user came from a search engine or not. The technique can be used to show search engine visitors whatever you choose, not just Adsense.</div> </p>
<h2>Background On Smart Pricing</h2>
<p>By now, most people know that <strong>Smart Pricing</strong> is a penalty Google applies to Adsense accounts that don’t convert well for the advertiser, resulting in you <strong>earning only about 10%</strong> of what you’d normally earn per click. </p>
<p>I’m not going to go into more detail than is absolutely necessary in this post, so if you want more information on Smart Pricing, see my post on <a href="http://www.scratch99.com/2008/08/seth-godin-smart-pricing/">how smart pricing may cost you money</a> or for the ultimate description, see Grizzly’s <a href="http://makemoneyforbeginners.blogspot.com/2008/04/optimization-tips-for-adsense.html">Optimization Tips for Adsense</a>.</p>
<p>For now, you just need to know that <strong>only certain visitors are going to click Adsense ads</strong> and buy something from the advertiser. Who? It’s not your regular readers. It’s not the stream of visitors from StumbleUpon, Digg or Sphinn. It’s the <strong>search engine visitors</strong>.</p>
<p>Search engine visitors provide <strong>targeted traffic</strong> for the advertiser, which <strong>converts well</strong>. The other sources don’t. If the majority of your traffic comes from the social news sites, then you’re <a href="http://www.scratch99.com/2008/01/avoid-adsense-smart-pricing-on-blogs/">in danger of being smart priced</a>. That’s why I chose to show Adsense only to search engine visitors.</p>
<h2>The Original “From Search” Function</h2>
<p>In my original <a href="http://www.scratch99.com/2008/01/shylock-adsense-plugin-hack-to-avoid-adsense-smart-pricing/">Shylock Adsense Plugin &#8211; Hack To Avoid Smart Pricing</a> post, I provided two approaches: one based on hacking just the Shylock Adsense plugin; another on a more generic solution that can be called from wherever you want (within the Shylock Adsense plugin, the sidebar, single.php, etc). </p>
<p>In this post, I’m using the second approach as it has a wider application. This was originally explained in the <em>Hacking Shylock Adsense AND Sidebars</em> section of the previous post. This worked by adding the following function to functions.php in your theme’s folder (wp-content/themes/<em>yourtheme</em> folder, where <em>yourtheme</em> is the name of your theme):</p>
<p class="codebox"><code>function scratch99_fromasearchengine(){<br />
&nbsp;&nbsp;$ref = $_SERVER[&#039;HTTP_REFERER&#039;];<br />
&nbsp;&nbsp;$SE = array(&#039;/search?&#039;, &#039;images.google.&#039;, &#039;web.info.com&#039;, &#039;search.&#039;, &#039;del.icio.us/search&#039;, &#039;soso.com&#039;, &#039;/search/&#039;, &#039;.yahoo.&#039;);<br />
&nbsp;&nbsp;foreach ($SE as $source) {<br />
&nbsp;&nbsp;&nbsp;&nbsp;if (strpos($ref,$source)!==false) return true;<br />
&nbsp;&nbsp;}<br />
&nbsp;&nbsp;return false;<br />
}<br />
</code></p>
<div class="csstextbox1">Note: This function is based on the ‘only show search engine’ functionality from the <a href="http://planetozh.com/blog/my-projects/wordpress-plugin-who-sees-ads-control-adsense-display/">Who Sees Ads plugin</a>.</div>
<p>This function was then called from the Shylock Adsense plugin, a sidebar widget, or anywhere else you may want to, via the following code:</p>
<p class="codebox"><code>if (function_exists(&#039;scratch99_fromasearchengine&#039;)) {<br />
&nbsp;&nbsp;if (scratch99_fromasearchengine()) {<br />
&nbsp;&nbsp;&nbsp;&nbsp;INSERT YOUR CODE HERE<br />
&nbsp;&nbsp;}<br />
}</code></p>
<p>Obviously, INSERT YOUR CODE HERE needs to be replaced with whatever code you want to show the search engine visitors: your Adsense code if it’s in the sidebar (using the <a href="http://wordpress.org/extend/plugins/php-code-widget/">ExecPHP widget</a>) or the Shylock Adsense code (see my original post for more details).</p>
<h2>Problem With The Original Function</h2>
<p>As <a href="http://www.zath.co.uk/">Zath</a> pointed out in the comments, the original function only works on the <strong>first page</strong> the visitor lands on. If the visitor subsequently navigates to another page on your site, <strong>the ads disappear</strong>. This is because the http_referer is no longer the search engine, it’s now the page where they landed on your site.</p>
<p>Of course, that means they no longer have the option to <strong>click an ad</strong> before leaving the site. I wasn&#8217;t worried about this, because I figured not many search engine visitors would go to another page on my site. <strong>I was wrong!</strong></p>
<h2>Leaving Money On The Table</h2>
<p>According to Google Analytics, over the last month, visitors arriving at this site from a search engine read 1.54 pages per visit. That means that <strong>every second visitor</strong> is clicking another page. </p>
<p>Every second visitor! That means I could be <strong>serving up 50% more ads</strong> to the sort of visitor who is <strong>likely to click ads</strong>!</p>
<p>I decided I better change the way I was doing things, so that <strong>search engine visitors see ads on every page</strong> they visit at my site. Fortunately, this is fairly easy to do, by setting a cookie that identifies search engine visitors.</p>
<h2>New “From Search” Function Using Cookie</h2>
<p>Here is the solution I’m now using on this blog. </p>
<p>First, the you need to add some code to functions.php in your theme’s folder (wp-content/themes/<em>yourtheme</em> folder, where <em>yourtheme</em> is the name of your theme). The following should be added immediately before the ?> at the bottom of the file:</p>
<p class="codebox"><code>$ref = $_SERVER[&#039;HTTP_REFERER&#039;];<br />
$SE = array(&#039;/search?&#039;, &#039;images.google.&#039;, &#039;web.info.com&#039;, &#039;search.&#039;, &#039;del.icio.us/search&#039;, &#039;soso.com&#039;, &#039;/search/&#039;, &#039;.yahoo.&#039;);<br />
foreach ($SE as $source) {<br />
&nbsp;&nbsp;if (strpos($ref,$source)!==false) {<br />
&nbsp;&nbsp;&nbsp;&nbsp;setcookie(&quot;sevisitor&quot;, 1, time()+3600, &quot;/&quot;, &quot;.scratch99.com&quot;); <br />
&nbsp;&nbsp;&nbsp;&nbsp;$sevisitor=true;<br />
&nbsp;&nbsp;}<br />
}<br />
&nbsp;<br />
function fromasearchengine(){<br />
&nbsp;&nbsp;global $sevisitor;<br />
&nbsp;&nbsp;if ($sevisitor==true || $_COOKIE[&quot;sevisitor&quot;]==1) {<br />
&nbsp;&nbsp;&nbsp;&nbsp;return true;<br />
&nbsp;&nbsp;}<br />
&nbsp;&nbsp;return false;<br />
}<br />
</code></p>
<p><strong>Note: In the setcookie line, you must change &#8220;.scratch99.com&#8221; to your own domain!<br />
</strong><br />
The fromasearchengine function can then be called from wherever you want to use it (to check if a visitor is from a search engine or not). This is explained further below.</p>
<h2>Notes About The New “From Search” Function</h2>
<p>The code that detects whether the user is from a search engine has been moved out of the fromasearchengine function, into the body of functions.php. This means it will only run this code once per page load, rather than every time the function is called, which may be several times per page load (I call it from Shylock Adsense and from the sidebar).</p>
<p>Also, the $sevisitor variable was introduced because the cookie can’t be detected on the first page view. The cookie is set on the first page view, but the $_COOKIE function won’t see it until the next page view. The above code checks whether the $sevisitor variable is set (ie it’s the first page view) or whether the cookie is set (ie it’s a subsequent page view).</p>
<p>I had one problem with setting the cookie via WordPress, but it doesn&#8217;t affect the final solution above, so I leave that for a future post.</p>
<h2>Calling The New “From Search” Function</h2>
<p>To call the new fromasearchengine function from Shylock Adsense, edit the shylock_adsense.php file which comes with the plugin. Look for the following code (on line 325 in version 1.2):</p>
<p class="codebox"><code>function shylock_adsense_filter($content){<br />
&nbsp;&nbsp;global $id,$user_level;<br />
&nbsp;&nbsp;$output = $content;</code></p>
<p>and replace it with:</p>
<p class="codebox"><code>function shylock_adsense_filter($content){<br />
&nbsp;&nbsp;global $id,$user_level;<br />
&nbsp;&nbsp;$output = $content;<br />
&nbsp;<br />
if (function_exists(&#039;fromasearchengine&#039;)) {<br />
&nbsp;&nbsp;if (fromasearchengine()) {<br />
</code></p>
<p>Then go down to about line 364 and look for:</p>
<p class="codebox"><code>&nbsp;&nbsp;return $output;</code></p>
<p>and replace it with:</p>
<p class="codebox"><code>} } return $output;</code></p>
<div class="csstextbox1">Note: I’ve just noticed that the Shylock Adsense Plugin has been renamed to the <a href="http://www.whydowork.com/blog/whydowork-adsense-plugin/">WhyDoWork Adsense Plugin</a>. The name change seems to be the only difference, so the line numbers above are still correct, but the function is called whydowork_adsense_filter instead of shylock_adsense_filter.</div>
<p>Alternatively, to call it from a  PHP sidebar widget or somewhere else (such as single.php), you would add the following code in the appropriate place:</p>
<p class="codebox"><code>&lt;?php if (function_exists(&#039;fromasearchengine&#039;)) {<br />
&nbsp;&nbsp;if (fromasearchengine()) { ?&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;INSERT YOUR CODE HERE<br />
&lt;?php } } ?&gt;</code></p>
<p>replacing INSERT YOUR CODE HERE with your Adsense code or whatever else you wanted to show the search engine visitor.</p>
<h2>Final Thoughts</h2>
<p>Using this technique, to set a cookie to <strong>identify search engine visitors</strong>, then only serving Adsense to such visitors, should help you <strong>make more money</strong>, while avoiding being <strong>smart priced</strong>. However, as always, it pays to experiment with Adsense and monitor the affects on your income.</p>
<p>Of course this technique will have other applications as well, allowing you to <strong>serve whatever content you like to search engine visitors</strong>. I hope some of you find it of use.</p>
<script type="text/javascript">Nifty("div.csstextbox1","bgcolor-#FFFFFF");</script>]]></content:encoded>
			<wfw:commentRss>http://www.scratch99.com/2008/09/avoid-smart-pricing-show-adsense-only-to-search-engine-visitors/feed/</wfw:commentRss>
		<slash:comments>94</slash:comments>
		</item>
		<item>
		<title>Chinese New Year &#8211; Introducing My New China Blog</title>
		<link>http://www.scratch99.com/2008/02/chinese-new-year-new-china-blog/</link>
		<comments>http://www.scratch99.com/2008/02/chinese-new-year-new-china-blog/#comments</comments>
		<pubDate>Wed, 06 Feb 2008 16:01:41 +0000</pubDate>
		<dc:creator>Stephen Cronin</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Adsense]]></category>
		<category><![CDATA[Blogging]]></category>
		<category><![CDATA[China]]></category>
		<category><![CDATA[Monetization]]></category>

		<guid isPermaLink="false">http://www.scratch99.com/2008/02/chinese-new-year-new-china-blog/</guid>
		<description><![CDATA[Copyright © 2010 Stephen Cronin. Visit the original article at http://www.scratch99.com/2008/02/chinese-new-year-new-china-blog/.Happy Chinese New Year! The arrival of the Chinese New Year seems like a good time to announce my new blog at jobsinchina.com. Primarily a blog, for now, JobsInChina will cover issues related to living and working in China.

What JobsInChina Will Offer
I&#8217;ve been wanting to [...]]]></description>
			<content:encoded><![CDATA[Copyright © 2010 <a href="http://www.scratch99.com">Stephen Cronin</a>. Visit the original article at <a href="http://www.scratch99.com/2008/02/chinese-new-year-new-china-blog/">http://www.scratch99.com/2008/02/chinese-new-year-new-china-blog/</a>.<br /><p><strong>Happy Chinese New Year</strong>! The arrival of the Chinese New Year seems like a good time to announce my new blog at <strong>jobsinchina.com</strong>. Primarily a blog, for now, <strong>JobsInChina</strong> will cover issues related to <strong><a title="Work, Travel, Have Fun, Live and Survive in China" href="http://www.jobsinchina.com/" target="_blank">living and working in China</a></strong>.</p>
<p><a title="Work, Travel, Have Fun, Live and Survive in China" href="http://www.jobsinchina.com/" target="_blank"><img src='http://www.scratch99.com/wp-content/uploads/2008/02/jobsinchina-headera.png' alt='JobsInChina' /></a></p>
<h2>What JobsInChina Will Offer</h2>
<p>I&#8217;ve been wanting to write about China and my experiences here for a long time. This gives me the outlet. I&#8217;ll write about anything related to China: daily life, culture, travel, news articles, amusing stories, pictures I&#8217;ve taken, etc. </p>
<p>I&#8217;ll relate these back to <strong>living and working in China</strong>, because the primary focus of the blog is to help people understand what it&#8217;s really like here.</p>
<p>The site will also aim to provide resources for people wanting to live or work in China. I plan to add sections covering work visas, legal issues, etc. This part of the site will build up slowly, as I&#8217;ll need to research it carefully.</p>
<p>It&#8217;s also quite likely that at some point in future, the site will list jobs available in China. This will probably be done in partnership with an existing job listing provider. </p>
<p>There are lots of possibilities with <strong>JobsInChina</strong>. I&#8217;ve taken the unusual step of leading with a blog and adding other services later. That doesn&#8217;t mean that those services won&#8217;t be provided in future.</p>
<h2>Why Lead With A Blog?</h2>
<p>I&#8217;ve owned the <strong>jobsinchina.com</strong> domain name for four years, but never done anything with it. My original plan was to create a job listing service, but I was too busy to put it into action. Time passed and the opportunity was lost. There is now a lot of strong competition in this area and a new job listing site would be unlikely to succeed (without a lot of money behind it).</p>
<p>However, my experience with <em>More Than Scratch The Surface</em> made me confident that I could create a successful China-related blog. I realised that the easiest way to succeed with the <strong>www.jobsinchina.com</strong> domain would be to build the blog first, then leverage that to add the other services later.</p>
<p>Besides, I wanted to write about my experiences here in China anyway!</p>
<h2>Monetization Of JobsInChina</h2>
<p>If I can build the <strong>JobsInChina</strong> to a reasonable level, it will offer some good monetization options, including:</p>
<ol>
<li>Adsense (search traffic only): While not a high paying niche, it should work reasonably well, once search engine visitors start to arrive. With lots of content, it should be able to attract reasonable search traffic. </li>
<li>Affiliate Reviews: A blog lends itself to reviews of products related to China: books, DVDs, language software, cameras (to take with you). </li>
<li>Direct Advertising: This may be where the real money comes from, once traffic reaches a certain level. Potential advertisers include large chains of English language schools in China, corporations hiring in China, companies selling China-related products, etc. </li>
<li>Partnerships: I won&#8217;t talk too much about this now, but once the site is reasonably successful, it will open the way for partnerships with job listing sites and other China related sites. </li>
</ol>
<p>I&#8217;m sure more opportunities will arise as things proceed.</p>
<h2>Adsense Related Posts Explained</h2>
<p>Regular readers will have noticed a lot of <strong>Adsense</strong> related posts recently, including:</p>
</p>
<ol>
<li><a href="http://www.scratch99.com/2008/01/the-adsense-dilemma-or-how-to-make-money/" target="_blank"><strong>The Adsense Dilemma (Or How To Make Money)</strong></a> </li>
<li><a href="http://www.scratch99.com/2008/01/avoid-adsense-smart-pricing-on-blogs/"><strong>How To Avoid Adsense Smart Pricing On Blogs</strong></a> </li>
<li><a href="http://www.scratch99.com/2008/01/shylock-adsense-plugin-hack-to-avoid-adsense-smart-pricing/"><strong>Shylock Adsense Plugin &#8211; Hack To Avoid Smart Pricing</strong></a> </li>
</ol>
<p>These all came from the planning for <strong>jobsinchina.com</strong>. My first thought was to create a <strong>Made For Adsense mini-site</strong>, but I soon decided that I wanted to create a blog, so I could write about my <a href="http://www.everyonesarticles.com/Category/Travel-&#038;-Tourism/113">experiences in China</a>. </p>
<p>At that stage, I realised that a blog with good content, would be less successful with Adsense than an MFA site with mediocre content. This lead to the &quot;<em>don&#8217;t solve their problems</em>&quot; theory outlined in the <strong>Adsense Dilemma</strong> post. As part of researching that post, I learnt more about <strong>Adsense Smart Pricing</strong> and the high risk blogs have of being <strong>smart priced</strong>. That lead to the second post. The third post was my solution to the problem. </p>
<p>So that&#8217;s why I&#8217;ve been subjecting you to all these Adsense related posts!</p>
<p>Ultimately, I decided to go with a blog for <strong>JobsInChina</strong> with the plan to expand into other services later. This will mean a <strong>lot of extra work</strong>, but should result in better monetization options once it&#8217;s reached a certain level.</p>
<h2>Final Thoughts</h2>
<p>I&#8217;m excited about <strong>JobsInChina</strong> and I&#8217;m really going to enjoy writing about China. If any of you are interested in learning more about China, or what it&#8217;s like to live there, join me at <a title="Work, Travel, Have Fun, Live and Survive in China" href="http://www.jobsinchina.com/" target="_blank"><strong>Jobs In China</strong></a>. Happy Chinese New Year!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.scratch99.com/2008/02/chinese-new-year-new-china-blog/feed/</wfw:commentRss>
		<slash:comments>24</slash:comments>
		</item>
		<item>
		<title>Finally &#8211; The Google Slap&#8230;</title>
		<link>http://www.scratch99.com/2008/01/toolbar-pagerank-penalty/</link>
		<comments>http://www.scratch99.com/2008/01/toolbar-pagerank-penalty/#comments</comments>
		<pubDate>Tue, 29 Jan 2008 03:39:30 +0000</pubDate>
		<dc:creator>Stephen Cronin</dc:creator>
				<category><![CDATA[Monetization]]></category>
		<category><![CDATA[Adsense]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[pagerank]]></category>
		<category><![CDATA[Sponsored Posts]]></category>

		<guid isPermaLink="false">http://www.scratch99.com/2008/01/toolbar-pagerank-penalty/</guid>
		<description><![CDATA[Copyright © 2010 Stephen Cronin. Visit the original article at http://www.scratch99.com/2008/01/toolbar-pagerank-penalty/.More Than Scratch The Surface has finally been penalised by Google. I noticed today that my toolbar PageRank has dropped from PR4 to PR0. It appears to only be a toolbar PR penalty &#8211; I am still in the same place in the SERPs.
I say [...]]]></description>
			<content:encoded><![CDATA[Copyright © 2010 <a href="http://www.scratch99.com">Stephen Cronin</a>. Visit the original article at <a href="http://www.scratch99.com/2008/01/toolbar-pagerank-penalty/">http://www.scratch99.com/2008/01/toolbar-pagerank-penalty/</a>.<br /><p><em>More Than Scratch The Surface</em> has finally been penalised by Google. I noticed today that my <strong>toolbar PageRank</strong> has dropped from PR4 to PR0. It appears to only be a <strong>toolbar PR penalty</strong> &#8211; I am still in the same place in the <strong>SERPs</strong>.</p>
<p>I say finally, because I&#8217;ve been watching other sites get penalised, while mine remained untouched. The cause of my penalty: two sponsored posts I wrote about three months ago. Until now, Google hadn&#8217;t noticed them.</p>
<h2>Goodbye PayPerPost</h2>
<p>Like RT, I&#8217;ve said <a href="http://www.untwistedvortex.com/2008/01/29/goodbye-izea-and-payperpost-it-was-nice-knowing-you/" target="_blank" class="broken_link"><strong>goodbye to PayPerPost</strong></a>. I only did two sponsored posts and it&#8217;s almost 3 months since the last one. I initially stopped doing them because I couldn&#8217;t find any fitting the subject of this blog. Then, as more and more blogs were <strong>penalised by Google</strong>, I decided to hold off doing any more.</p>
<p>I thought about adding <strong>nofollow</strong> to the links when Terence Chang recently <strong><a href="http://www.terencechang.com/2008/01/14/text-link-ads-may-kill-your-google-page-rank/" target="_blank">lost his toolbar PR</a></strong>. I&#8217;m not sure why I didn&#8217;t. If I&#8217;m honest, I guess I thought that if Google hadn&#8217;t already penalised me, then they must have missed me. So if you are thinking about fixing any issues on your site, do it today!</p>
<p>I&#8217;ve now added <strong>nofollow</strong> to the links and <strong>requested reconsideration </strong>via Google&#8217;s Webmaster Tools. Now, I wait and hope my <strong>toolbar PR is restored</strong>. </p>
<h2>Why Am I Worried About Toolbar PR?</h2>
<p>Cynics will be asking why I&#8217;m so worried about <strong>toolbar PR</strong>, given my somewhat anti-Google stance on previous posts, such as <a href="http://www.scratch99.com/2007/10/final-thoughts-on-the-pagerank-debacle/"><strong>Final Thoughts On The PageRank Debacle</strong></a> and <a href="http://www.scratch99.com/2007/11/signed-up-for-payperpost/" target="_blank"><strong>I Signed Up For PayPerPost</strong></a>.</p>
<p>There are several reasons for my change of stance:</p>
<ol>
<li>Originally, I was angry that so many fine bloggers were penalised for what was normal practice. It <strong>felt</strong> like Google was being very unfair. I&#8217;ll admit I didn&#8217;t know anything about Google&#8217;s Terms Of Service at the time. Since then, I&#8217;ve come to realise that Google had stated that the nofollow tag must be added to paid reviews and advertising. I still feel that <strong>Google should have communicated this better</strong> to the average blogger before penalising them, but in hindsight, they could have reduced real PR rather than just toolbar PR. A turning point in my attitude came when I read a well-considered <a href="http://makemoneyforbeginners.blogspot.com/2007/11/i-hate-defending-google-but.html" target="_blank"><strong>defence of Google</strong></a>.</li>
<li>I originally thought, like many others, that I didn&#8217;t need Google. I&#8217;ve since come to realise that although it may be possible to have a successful site without <strong>Google search traffic</strong>, this traffic is where most of the money is. Search engine visitors are the one who are most likely to click ads or buy something (whether from Adsense or Amazon). Turning your back on Google&#8217;s search traffic has to be considered as shooting yourself in the foot. <strong>If I value the search traffic, I have to play by Google&#8217;s rules</strong>. I&#8217;m now happy to do so: In fact only 3 days ago, <em>I turned down an approach to buy links</em> on my site.</li>
<li>I was making very little from <a href="http://www.scratch99.com/tag/adsense/" target="_blank"><strong>Adsense</strong></a> at the time and it appeared that sponsored posts were a better option. This may indeed be the case for some blogs, but I&#8217;ve come to understand Adsense much better since then. As I&#8217;ve learnt more about Adsense, it&#8217;s started performing better &#8211; and it&#8217;ll only get better as my site grows. Long term, Adsense is a better option.</li>
<li>Although <strong>toolbar PR</strong> is pretty much irrelevant (it&#8217;s your real PR and position in the SERPs that really matter), <em>most people don&#8217;t realise that</em>. Why is that important? Well, it&#8217;d important if I wanted to sell links or write sponsored posts, because they&#8217;re based on <strong>toolbar PR</strong>, but <em>I&#8217;m not going to do that</em>! However, I&#8217;ll be moving to Brisbane in about 3 months and I&#8217;ll be looking for a web-related job. You never know, a PR4 website <em>may</em> help me get such a job, a PR0 site probably won&#8217;t!</li>
</ol>
<h2>Final Thoughts</h2>
<p>I didn&#8217;t have to post this. Google don&#8217;t care whether I make this post or not. I could have just <strong>requested reconsideration</strong> quietly without mentioning it and most people wouldn&#8217;t have noticed. But that&#8217;s not my way. If I feel I&#8217;ve made a mistake, I&#8217;ll put my hand up and admit it.</p>
<p>In the past I&#8217;ve said things that were <strong>anti-Google</strong> and <strong>pro-sponsored posts</strong>. At the time I believed what I said and there is an element of truth in those statements. It may be that for some people, sponsored posts are the best way to monetize their sites. It&#8217;s quick and easy money for a small blog, while Adsense won&#8217;t start working well until you&#8217;ve built your blog up and you understand how it works a little better.</p>
<p>However, I&#8217;ve come to realise that in the bigger picture, Google search traffic is a very important element of a successful site. It&#8217;s not something I want to lose, so I&#8217;ll play by Google&#8217;s rules. Today, I&#8217;ve only <strong>lost my</strong> <strong>toolbar PR</strong>, tomorrow it may be my <strong>real PageRank</strong> and my <strong>position in the SERPs</strong>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.scratch99.com/2008/01/toolbar-pagerank-penalty/feed/</wfw:commentRss>
		<slash:comments>45</slash:comments>
		</item>
		<item>
		<title>How To Avoid Adsense Smart Pricing On Blogs</title>
		<link>http://www.scratch99.com/2008/01/avoid-adsense-smart-pricing-on-blogs/</link>
		<comments>http://www.scratch99.com/2008/01/avoid-adsense-smart-pricing-on-blogs/#comments</comments>
		<pubDate>Tue, 15 Jan 2008 15:42:21 +0000</pubDate>
		<dc:creator>Stephen Cronin</dc:creator>
				<category><![CDATA[Monetization]]></category>
		<category><![CDATA[Adsense]]></category>
		<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Wordpress Plugins]]></category>

		<guid isPermaLink="false">http://www.scratch99.com/2008/01/avoid-adsense-smart-pricing-on-blogs/</guid>
		<description><![CDATA[Copyright © 2010 Stephen Cronin. Visit the original article at http://www.scratch99.com/2008/01/avoid-adsense-smart-pricing-on-blogs/.In my last post, I mentioned the danger Adsense Smart Pricing poses to blogs. Blogs are particularly vulnerable because most blogs don&#8217;t work well with Adsense. In this post, I examine the issue further and look at a couple of potential solutions for WordPress users [...]]]></description>
			<content:encoded><![CDATA[Copyright © 2010 <a href="http://www.scratch99.com">Stephen Cronin</a>. Visit the original article at <a href="http://www.scratch99.com/2008/01/avoid-adsense-smart-pricing-on-blogs/">http://www.scratch99.com/2008/01/avoid-adsense-smart-pricing-on-blogs/</a>.<br /><p>In my last post, I mentioned the danger <strong>Adsense Smart Pricing</strong> poses to blogs. Blogs are particularly vulnerable because <a title="My post on which types of site make money from Google Adsense" href="http://www.scratch99.com/2008/01/the-adsense-dilemma-or-how-to-make-money/" target="_blank"><strong>most blogs don&#8217;t work well with Adsense</strong></a>. In this post, I examine the issue further and look at a couple of potential solutions for WordPress users &#8211; <strong>but there&#8217;s a twist in the tale</strong>.</p>
<h2>What Is Adsense Smart Pricing?</h2>
<p>First, lets look at what <strong>Smart Pricing</strong> is. In my last post I said:</p>
<blockquote>
<p>Not many people have heard about <strong>Adsense Smart Pricing</strong> and there&#8217;s little information about it. It appears that if you have a low CTR (under 1 or 2%), you may be penalised, so you only get about 10% of what clicks are worth.</p>
</blockquote>
<p>This was based on Courtney Tuttle&#8217;s recent explanation of <a title="Court's post on Smart Pricing" href="http://courtneytuttle.com/2008/01/02/how-to-get-worthless-adsense-clicks/" target="_blank"><strong>Adsense Smart Pricing</strong></a>. The theory is that having a low CTR (below 1 or 2%) will result in a penalty, so you only receive about 10% of what clicks are normally worth.</p>
<h2>The Danger To Blogs</h2>
<p>Simply put, the typical blog is in danger of having a <strong>low CTR</strong> because they rely heavily on <em>regular visitors</em> and <em>social traffic</em> (such as StumbleUpon). Both of these groups are <a title="My post on which types of site make money from Google Adsense" href="http://www.scratch99.com/2008/01/the-adsense-dilemma-or-how-to-make-money/" target="_blank"><strong>unlikely to click ads</strong></a>, resulting in a <strong>lower CTR</strong>. In particular, a burst of traffic from StumbleUpon is likely to have disastrous effects on CTR &#8211; a large number of impressions with very few clicks.</p>
<p><strong><a title="Article by Grizzly About The Benefits Of Search Engine Traffic" href="http://makemoneyforbeginners.blogspot.com/2008/01/there-are-two-huge-benefits-of-search.html" target="_blank">Search engine visitors do click ads</a></strong><em>.</em> There are many factors that go into how high your CTR is, but it&#8217;s accepted that the higher the ratio of search engine visitors, the <strong>higher the CTR</strong>. While most blogs get <em>search engine traffic</em>, the majority of their visitors come from other sources.</p>
<p>This blog&#8217;s CTR is <em>well under</em> 1%. That&#8217;s not surprising given the target audience and the fact that only 25% of traffic comes from search engines, but it also means this blog is in danger of being <strong>smart priced </strong>by <strong>Adsense</strong>.</p>
<h2>What Can Blogs Do About Smart Pricing?</h2>
<p>The solution seems simple &#8211; to me anyway. Why not just show <strong>Adsense</strong> ads to <strong>search engine visitors only</strong>? This should result in a much higher CTR. Of course, a few clicks may be lost, along with a lot of impressions &#8211; but it would be worth it, if the value of clicks were higher as result.</p>
<p>I went ahead and did it on this blog. You won&#8217;t see <strong>Adsense</strong> here, unless you came via a search engine. I&#8217;ll tell you more about how I did it later.</p>
<h2>Does It work?</h2>
<p>It&#8217;s early days yet, but I&#8217;m still getting clicks (I don&#8217;t seem to have lost any) and my CTR has moved from <em>well below</em> 1% to around 2 or 3%. It&#8217;s looking good, so I decided to write a post explaining how to do this.</p>
<h2>But Here&#8217;s The Twist!</h2>
<p>When writing this post, I went digging for some <em>official</em> information about <strong>Smart Pricing</strong>. There is very little to be found. The best I could come up with is <a href="http://adsense.blogspot.com/2005/10/facts-about-smart-pricing.html" target="_blank"><strong>The Facts About Smart Pricing</strong></a> from Google&#8217;s official <strong>Adsense Blog</strong>. This is more than two years old.</p>
<p>Importantly, it contradicts what Court says. Here&#8217;s a quote from the post (emphasis mine):</p>
<blockquote>
<p>The percentage of clicks that convert for an advertiser is the most important factor in an advertiser&#8217;s ROI, so it&#8217;s not only possible, but common, to have a low CTR and a high advertiser conversion rate. It&#8217;s also possible to have a high CTR and a low conversion rate. <strong>Don&#8217;t remove the AdSense code from your site just because it has a lower CTR</strong> &#8211; it may be one of your best converting sites.</p>
</blockquote>
<h2>Did Court Get It Wrong?</h2>
<p>Yes, I think so. I have the greatest respect for Court and he has a lot more experience with Adsense than I do. He&#8217;s basing his theory on what he&#8217;s personally seen, others verify it and Google&#8217;s statement is ancient. </p>
<p>However, it seems more likely that Google would use <strong>advertiser conversion rate</strong>, rather than CTR, to determine whether <strong>Smart Pricing</strong> is applied. After all, <strong>Smart Pricing</strong> is all about Google delivering value to the advertiser.</p>
<h2>Does this make a difference?</h2>
<p>Only a little. There is probably a high correlation between high CTR and high advertiser conversion rate, because <strong>both are a product of targeted traffic</strong>. </p>
<p>People who are <em>searching for a solution</em> to a problem are more likely to click ads promising a solution. They are also more likely to buy something from the advertiser than a regular visitor who <em>wasn&#8217;t actively searching for something</em>. </p>
<p>So a <strong>high CTR </strong>probably means a <strong>high advertiser conversion rate</strong>. Showing Adsense to search engine visitors only should also result in a higher advertiser conversion rate and help prevent you getting <strong>smart priced</strong>.</p>
<p>However, you should try to determine if you&#8217;re <strong>smart priced</strong> before taking action. Don&#8217;t just disable <strong>Adsense</strong> because you have a low CTR.</p>
<div class="csstextbox1">Edit: I recommend reading this post which explains <a href="http://makemoneyforbeginners.blogspot.com/2008/01/finding-niche-markets.html">Adsense smart pricing</a> in great detail. Grizzly&#8217;s blog is a great place for learning about <a href="http://makemoneyforbeginners.blogspot.com/">making money online</a>.</div>
<h2>Are You Smart Priced?</h2>
<p>It&#8217;s hard to tell, as click value varies from ad to ad and from niche to niche. If your clicks are only paying 10 cents, then you are probably <strong>smart priced</strong>, but there&#8217;s no real way to know. </p>
<p>The only way is to experiment and see if the click value goes up. Try showing Adsense to search engine traffic only &#8211; <em>you&#8217;ll lose some clicks, but it should result in higher CTR and higher conversion rate</em>. It may take a week for you to see the benefits and you need to monitor how much you&#8217;re making closely. </p>
<p>If your earnings don&#8217;t improve, then maybe you weren&#8217;t <strong>smart priced</strong>. If that&#8217;s the case, undo the changes!</p>
<h2>Is This Blog Smart Priced?</h2>
<p>As I mentioned earlier, the CTR on this blog is way below 1%. In fact it&#8217;s below 0.2%. So I should be <strong>smart priced</strong> right? But I don&#8217;t think I am. </p>
<p>In the past, I&#8217;ve had periods where I was only getting 6 to 10 cents a click, but for the last month or so, I&#8217;ve been getting 30 to 90 cents a click. <em>I think </em>that&#8217;s probably about right for this niche. If someone out there can confirm this, please let me know!</p>
<p>Even though I think I&#8217;m not <strong>smart priced</strong>, I&#8217;m going to stick to my plan to only show Adsense to search traffic. I&#8217;m confident that <strong>search engine visitors </strong>are the ones who click my ads. I&#8217;ll use Adsense on other projects, so I want to protect myself. <strong>If this blog gets smart priced, so will all my sites</strong>.</p>
<h2>How To Show Adsense To Search Traffic Only</h2>
<p>I&#8217;ll mention two possible solutions for WordPress users:</p>
<h3>1. The Who Sees Ads Plugin</h3>
<p>One solution for <strong>WordPress</strong> users is the <a title="WordPress plugin that allows you to only show ads to search engine visitors - amongst other options" href="http://planetozh.com/blog/my-projects/wordpress-plugin-who-sees-ads-control-adsense-display/" target="_blank"><strong>Who Sees Ads plugin</strong></a>. This has the ability to display ads for <strong>search engine traffic</strong> only. There are many other options, but this is the only one we are interested in. It works with the <strong>Adsense Deluxe</strong> plugin, which many people use, and can control ads in the sidebar as well as in the post body.</p>
<p>If you use <strong>Adsense Deluxe</strong> or manually insert Adsense code, then this is the solution for you. I won&#8217;t go into <em>how</em> to set <strong>Who Sees Ads</strong> up to display ads for search engine traffic. Just follow the instructions from the plugin&#8217;s home page. You want to set <em>if Visitor comes from a search engine</em> to display and turn the rest off. If anyone wants me to give detailed instructions on how to do this, leave a comment below and I&#8217;ll do this in a future post.</p>
<h3>2. The Shylock Adsense Plugin</h3>
<p>Personally, I prefer the <strong>Shylock Adsense plugin</strong> because it places the ads for you. Most plugins require you to manually enter a HTML comment where the ad should appear (in each post). This affords greater control on where they appear, but means they can&#8217;t be moved without editing each post! With <strong>Shylock</strong>&#8217;s system you specify where ads should appear (eg top right of the post, middle left, etc) and <strong>Shylock</strong> adds the <strong>Adsense</strong> code to all posts.</p>
<p>A key feature of <strong>Shylock</strong> is that it allows you to only display ads on posts older than a certain number of days. If you set this to say 14 days, ads will not appear on new posts, meaning the majority of <em>regular readers</em> and <em>social traffic</em> won&#8217;t see them. This will certainly improve CTR and advertiser conversion rate, but there are a couple of problems: </p>
<ol>
<li>It only works for ads in the post body. Ads in the sidebar will continue to appear to everyone.</li>
<li>Some regular visitors, social traffic, people following links will visit old post and be shown ads. It&#8217;s best if it appears for <em>search traffic only.</em></li>
</ol>
<p>As my sidebar ad is my highest earner, I&#8217;m not willing to give it up. Therefore, I decided to hack Shylock and the sidebar, so that ads are only shown to <em>search engine traffic</em>. This sounds complicated, but it&#8217;s actually quite simple. This post was supposed include instructions on how to do this, but I think I&#8217;ll leave that to a separate post, later this week.</p>
<h2>The Final Word</h2>
<p><strong>Adsense Smart Pricing</strong> is something everyone wants to avoid, but the average blog is in serious danger of being <strong>smart priced</strong>. The solution may be to show ads to search engine traffic only. However, don&#8217;t assume that a blog is <strong>smart priced</strong> simply because it has a low CTR &#8211; do some testing to see if this is really the case.</p>
<p>Got an opinion on this? Let me know!</p>
<script type="text/javascript">Nifty("div.csstextbox1","bgcolor-#FFFFFF");</script>]]></content:encoded>
			<wfw:commentRss>http://www.scratch99.com/2008/01/avoid-adsense-smart-pricing-on-blogs/feed/</wfw:commentRss>
		<slash:comments>89</slash:comments>
		</item>
		<item>
		<title>The Adsense Dilemma (Or How To Make Money)</title>
		<link>http://www.scratch99.com/2008/01/the-adsense-dilemma-or-how-to-make-money/</link>
		<comments>http://www.scratch99.com/2008/01/the-adsense-dilemma-or-how-to-make-money/#comments</comments>
		<pubDate>Wed, 09 Jan 2008 13:32:55 +0000</pubDate>
		<dc:creator>Stephen Cronin</dc:creator>
				<category><![CDATA[Monetization]]></category>
		<category><![CDATA[Adsense]]></category>
		<category><![CDATA[Blogging]]></category>
		<category><![CDATA[make money online]]></category>
		<category><![CDATA[traffic]]></category>

		<guid isPermaLink="false">http://www.scratch99.com/2008/01/the-adsense-dilemma-or-how-to-make-money/</guid>
		<description><![CDATA[Copyright © 2010 Stephen Cronin. Visit the original article at http://www.scratch99.com/2008/01/the-adsense-dilemma-or-how-to-make-money/.Adsense &#8211; some love it, some hate it. It doesn&#8217;t work for all sites, but there&#8217;s no denying that on the right site, it can make a lot of money.
Most beginners don&#8217;t understand what type of site it works well on. They slap Adsense on [...]]]></description>
			<content:encoded><![CDATA[Copyright © 2010 <a href="http://www.scratch99.com">Stephen Cronin</a>. Visit the original article at <a href="http://www.scratch99.com/2008/01/the-adsense-dilemma-or-how-to-make-money/">http://www.scratch99.com/2008/01/the-adsense-dilemma-or-how-to-make-money/</a>.<br /><p><strong>Adsense</strong> &#8211; some love it, some hate it. It doesn&#8217;t work for all sites, but there&#8217;s no denying that <strong>on the right site, it can make a lot of money</strong>.</p>
<p>Most beginners don&#8217;t understand <em>what type of site</em> it works well on. They slap Adsense on their blog and expect the cash to come rolling in. Of course, it doesn&#8217;t. Why? Because Adsense doesn&#8217;t work well on their <em>type of site</em>.</p>
<p>In this article, I explain the <strong>underlying principle of Adsense</strong> and look at the attributes of sites that <strong>are successful with Adsense</strong>.</p>
<div class="csstextbox1">Although Adsense is used on many different types of site, to keep it simple, I compare two main types of site:
<ol>
<li><strong>Blogs:</strong> because that&#8217;s <em>my</em> target audience and what most beginners use.</li>
<li><strong>Made For Adsense (MFA) </strong><strong>niche mini sites</strong><strong>:</strong> because that&#8217;s a common model used by people actually making money from Adsense.</li>
</ol>
<p></div>
<h2>The Underlying Principle Of Adsense</h2>
<p>First, we need to understand the <em>underlying principle of Adsense</em>. I&#8217;ve seen people skirt around the issue, but I&#8217;ve never seen anyone actually come out and say it:</p>
<p><strong>For Adsense to work well, your content should not solve the reader&#8217;s problem. If you solve their problem, they won&#8217;t need to click the ads.</strong></p>
<p><strong>If you leave the reader needing more information, you increase the chance of them clicking a contextual ad which may solve their needs.</strong></p>
<p><em>The better your content is, the lower your click through rate (CTR) will be.</em></p>
<h2>So Should I Start Writing Mediocre Content?</h2>
<p><strong>No!</strong> Not unless it&#8217;s for an MFA site. If you start writing mediocre content on a blog, you&#8217;ll lose your readers and your blog will start to fail on all fronts.</p>
<p>For a blog, you <strong>need great content</strong>. This increases readership, encourages other sites to link to you, leading to more traffic, a higher PageRank, etc. <em>Take the great content away and your blog will fail</em>. Blogs <em>can </em>make money from Adsense, but they generally have a low CTR.</p>
<p>For an MFA site, <em>good content is less important</em>. These sites don&#8217;t rely on the content to promote the site &#8211; they are more likely to use <strong><a title="Information on Article Marketing" href="http://ez-onlinemoney.com/Article-Marketing.html" target="_blank">Article Marketing</a></strong>. They typically have mediocre content and, as a result, a high CTR.</p>
<h2>Other Factors Affecting Adsense Success</h2>
<p>There are many other factors affecting the success of Adsense, including:</p>
<h3>1. Target Audience / Ad Awareness</h3>
<p>Its well known that experienced Internet users are less likely to click ads than newer / casual Internet users. This appears to be related to visitor awareness of what&#8217;s content and what&#8217;s an ad. Experienced Internet users can spot ads a mile off and avoid clicking them.</p>
<p>The topic of a site determines the type of visitor it receives. Sites about web development, making money online, etc will attract visitors who are experienced Internet users and mostly Adsense blind. Sites about knitting or pets will attract visitors who are more likely to click ads.</p>
<div class="csstextbox1"><strong>Blogs</strong>: Depends on the niche. A Make Money Online blog will have a low CTR, but a knitting blog will do better.<br />
<strong>MFA Sites</strong>: Once again, depends on the niche, but the niche is carefully selected to attract less technical visitors.<br />
</div>
<h3>2. Where Do Your Visitors Come From?</h3>
<p>Does your site cater for <a title="article explaining the different types of visitors and why most people don't make money with Adsense" href="http://www.garryconn.com/the-main-reason-why-adsense-doesnt-make-you-money.php" target="_blank"><strong>regular visitors or search engine visitors</strong></a>? What about social traffic, such as that from StumbleUpon?</p>
<p><strong>Regular visitors</strong> don&#8217;t normally click ads. They come to read your content and go away happy, their goal fulfilled.</p>
<p><strong>Search engine visitors</strong> do click ads. They arrive at your site seeking to address a specific need. If your content doesn&#8217;t solve the need, they&#8217;ll keep looking. If they see a related Adsense ad, they are likely to click it.</p>
<p><strong>Social traffic visitors </strong>don&#8217;t normally click ads. What&#8217;s more, a surge of social traffic results in high traffic with few clicks, drastically lowering your CTR, which can result in you being Smart Priced by Google (more on this later).</p>
<div class="csstextbox1"><strong>Blogs</strong>: Receive search traffic, but focus is on regular visitors, then social traffic, so lower CTR.<br />
<strong>MFA Sites</strong>: Only target search engine visitors, meaning higher CTR.</div>
<h3>3. Niche / Value Of Clicks</h3>
<p>Having a high CTR is great &#8211; but what if most clicks only earn you 6 cents? To make serious money from Adsense you need to <a title="Article highlighting the importance of targetting niches that result in high paying clicks" href="http://ez-onlinemoney.com/blog/internet-marketing/niche-marketing-and-the-importance-of-high-paying-niches/" target="_blank"><strong>target high paying niches</strong></a>. </p>
<div class="csstextbox1"><strong>Blogs</strong>: Depends on the niche. A Make Money Online blog is unlikely to get high paying clicks, but some niches will do well.<br />
<strong>MFA Sites</strong>: The niche is normally carefully selected to result in high paying clicks.<br />
</div>
<h3>4. Traffic</h3>
<p>Even if you have a low CTR, decent money can still be made with high traffic. After all, 1% of 1000 is the same as 25% of 40 (it is: trust me, I checked). </p>
<p>However, you probably need upwards of 10,000 unique visitors a day to make serious money. At that point, you&#8217;ll be earning more from other sources, but Adsense can supplement that nicely.</p>
<div class="csstextbox1"><strong>Blogs</strong>: Typically have higher traffic than MFA sites, but not many reach the traffic levels needed to really do well with Adsense.<br />
<strong>MFA Sites</strong>: Typically not high traffic, but this is offset by a high CTR.</div>
<h3>5. Adsense Smart Pricing</h3>
<p>Not many people have heard about <font color="#ff0000"><a title="Court's post on Smart Pricing" href="http://courtneytuttle.com/2008/01/02/how-to-get-worthless-adsense-clicks/" target="_blank"><strong>Adsense Smart Pricing</strong></a></font><font color="#000000"> and there&#8217;s little information about it. It appears that if you have a low CTR (under 1 or 2%), you may be penalised, so you only get about 10% of what clicks are worth.</font></p>
<div class="csstextbox1"><strong>Blogs</strong>: Many are probably already smart priced, or in danger of being so.<br />
<strong>MFA Sites</strong>: Normally have a high CTR, so no danger of smart pricing.</div>
<p>Note: If you have a WordPress blog, it may be worth using the <a title="WordPress plugin that allows you to only show ads to search engine visitors - amongst other options" href="http://planetozh.com/blog/my-projects/wordpress-plugin-who-sees-ads-control-adsense-display/" target="_blank"><strong>Who Sees Ads plugin</strong></a> so that only search engine traffic see Adsense ads. I haven&#8217;t done this on this blog yet as I&#8217;m looking into another option at the moment.</p>
<h2>Putting It All Together</h2>
<p>To gauge how successful a site is likely to be with Adsense, all these factors need to be taken into account. If a site is weak in one area, it can still be successful if its strong in the other areas. That said, lets take a look at the ideal site for Adsense and the &#8216;Anti-Adsense&#8217; site where it won&#8217;t work well.</p>
<p><strong>The Ideal Site For Adsense </strong>should have mediocre content, be targeted at search engine traffic and be in a niche which attracts inexperienced web users and high clicks. With all that in place, the higher the traffic the better!</p>
<p><strong>Adsense Won&#8217;t Work Well </strong>on sites with good content, regular readers and social traffic, especially in niches which attract experienced web users or which have low paying clicks.</p>
<p><strong>Okay, if you haven&#8217;t figured it out yet:</strong></p>
<p>MFA sites are very close to the ideal site for Adsense.&nbsp; The only struggle they have is with achieving high traffic, but the traffic they do receive is <strong>targeted traffic</strong>, resulting in a high CTR, so <strong>they make money</strong>.</p>
<p>Blogs are much closer to the anti-Adsense site. For a blog to be successful, they have to embrace many of the things that don&#8217;t work well with Adsense. <em>For Adsense to work on a blog, you&#8217;ll need traffic and LOTS of it &#8211; </em>although some niches may be moderately successful with only medium traffic. If you&#8217;re in the making money online, blogging or a technical niche, best of luck!</p>
<h2>The Adsense Dilemma</h2>
<p>If you really want to make money with Adsense, then you have to face up to the fact that you&#8217;re unlikely to do so with your blog. You then have a choice:</p>
<p>1. Persist with your blog. Try to build it into a top-of-niche, high-quality blog, with lots of traffic. This will take a long time and you won&#8217;t see much money until you&#8217;ve &#8216;made it&#8217;.</p>
<p>OR</p>
<p>2. Forget your blog, at least for making money purposes. Instead look into <a title="post on making money through an MFA sites" href="http://makemoneyforbeginners.blogspot.com/2007/12/lets-make-money-right-now.html" target="_blank"><strong>creating MFA sites</strong></a>.</p>
<div class="csstextbox1">As Grizzly points out (in the post I linked to), it can be a little seedy. It&#8217;s up to you how far you want to go. You can always stick to trying to conquer keywords related to finance or some other non-seedy topic. Some of you may still have trouble with it, because the point is to <strong>not </strong>provide people with the solutions they need, which is counter intuitive for most bloggers. I&#8217;m not saying what you should do, just pointing out the options.</div>
<p><em>That&#8217;s the Adsense dilemma. What will you do?</em></p>
<h2>The Final Word</h2>
<p>A lot of this has been repeated in various places around the Internet. I&#8217;ve tried to pull it all together. The one thing I haven&#8217;t seen written elsewhere, is the theory:</p>
<p><strong>Your content shouldn&#8217;t solve people&#8217;s problems if you want them to click Adsense ads</strong>.</p>
<div class="csstextbox1">That&#8217;s not to say someone, somewhere, hasn&#8217;t written about it before. <strong>Edit:</strong> <em>I just noticed that Vic from <a href="http://bloggerunleashed.com/">Blogger Unleashed</a> mentioned this two days ago in his Adsense Basics post. Vic is a true Adsense expert, so I guess that shows I&#8217;m on the right track!</em></div>
<p>If you disagree with me, tell me why! If you agree &#8211; what will you do?</p>
<h2>Addendum</h2>
<p>Something I&#8217;ve been thinking about recently is <a href="http://blogigs.com/30-adsense-optimized-wordpress-themes/">Adsense optimized WordPress Themes</a>. If you&#8217;re starting multiple blogs and your goal is make money by running Adsense on them, then getting some themes already set up for Adsense may be the way to go&#8230;</p>
<script type="text/javascript">Nifty("div.csstextbox1","bgcolor-#FFFFFF");</script>]]></content:encoded>
			<wfw:commentRss>http://www.scratch99.com/2008/01/the-adsense-dilemma-or-how-to-make-money/feed/</wfw:commentRss>
		<slash:comments>73</slash:comments>
		</item>
		<item>
		<title>Make Money Online &#8211; Don&#8217;t Forget Your Existing Skills</title>
		<link>http://www.scratch99.com/2007/12/make-money-online-dont-forget-your-existing-skills/</link>
		<comments>http://www.scratch99.com/2007/12/make-money-online-dont-forget-your-existing-skills/#comments</comments>
		<pubDate>Thu, 06 Dec 2007 15:15:48 +0000</pubDate>
		<dc:creator>Stephen Cronin</dc:creator>
				<category><![CDATA[Monetization]]></category>
		<category><![CDATA[make money online]]></category>
		<category><![CDATA[services]]></category>
		<category><![CDATA[skills]]></category>

		<guid isPermaLink="false">http://www.scratch99.com/2007/12/make-money-online-dont-forget-your-existing-skills/</guid>
		<description><![CDATA[Copyright © 2010 Stephen Cronin. Visit the original article at http://www.scratch99.com/2007/12/make-money-online-dont-forget-your-existing-skills/.A lot of my favourite blogs discuss making money online. I&#8217;ve been plotting how I can get in on the action &#8211; but I recently had a revelation. While reading about the many different strategies, I&#8217;d lost sight of what&#8217;s most likely to make me [...]]]></description>
			<content:encoded><![CDATA[Copyright © 2010 <a href="http://www.scratch99.com">Stephen Cronin</a>. Visit the original article at <a href="http://www.scratch99.com/2007/12/make-money-online-dont-forget-your-existing-skills/">http://www.scratch99.com/2007/12/make-money-online-dont-forget-your-existing-skills/</a>.<br /><p>A lot of my favourite blogs discuss <strong>making money online</strong>. I&#8217;ve been plotting how I can get in on the action &#8211; but I recently had a revelation. While reading about the many different strategies, I&#8217;d lost sight of what&#8217;s most likely to make me decent money online: <strong>leveraging my existing skill set</strong>.</p>
<h2>Do I Want To Make Money Online?</h2>
<p>Yes! When I started this blog, the purpose wasn&#8217;t to make money from it. I only wanted to cover my hosting costs. Slowly, I&#8217;ve started thinking it would be nice to make more money from it. Maybe take my family out to dinner. Maybe pay for a holiday. <em>Maybe, just maybe, even make a living online&#8230;</em></p>
<p>Why the change in my goals? Because I read so many blogs that discuss making money. <strong>That&#8217;s right &#8211; I&#8217;m blaming </strong><a title="A list of the blogs I regularly read" href="http://www.scratch99.com/2007/12/are-you-in-my-feed-reader/" target="_blank"><strong>you guys</strong></a>! </p>
<h2>So What Ideas Have You Been Putting Into My Head?</h2>
<p>There are a lot of great posts out there about making money online.</p>
<p>Some cover strategies that could generate extra income from this blog, such as <a title="Yaro&#x27;s excellent article on Affiliate Marketing through a blog" href="http://www.entrepreneurs-journey.com/856/affiliate-blogging/" target="_blank">Affiliate Marketing</a>, <a title="Josh&#x27;s article on how to create and market an ebook" href="http://ez-onlinemoney.com/blog/internet-marketing/how-to-create-and-market-a-ebook-or-report/" target="_blank">creating and selling an ebook</a> or <a title="BlogClout on how to write an info product" href="http://www.blogclout.com/blog/november-goal-create-a-quick-info-product/" target="_blank">information product</a>, <a title="Maki&#x27;s excellent list of sponsored post services" href="http://www.doshdosh.com/a-definitive-list-of-paid-blogging-websites/" target="_blank">sponsored posts</a> or displaying ads from <a title="ProBlogger Darren writes about WidgetBucks" href="http://www.problogger.net/archives/2007/10/02/widgetbucks-a-new-advertising-option-for-your-blog/" target="_blank">WidgetBucks</a>, TLA, Kontera, etc. </p>
<p>Others involve creating additional sites. For example: <a title="Maurice, The Cayman Host, writes about creating mini sites quickly" href="http://www.thecaymanhost.com/blog/item/build-mini-sites-fast" target="_blank">building niche mini sites</a> and promoting them through <a title="Josh&#x27;s interview with Tim Gorman - with loads on information on promoting niche sites through Article Marketing" href="http://ez-onlinemoney.com/blog/article-marketing/article-marketing-and-niche-marketing-with-tim-gorman-interview/" target="_blank">article marketing</a> or <a title="Gerry&#x27;s interview with Terence Chang about starting an online store" href="http://whereisthatmoney.blogspot.com/2007/11/start-virtual-store.html" target="_blank">starting an online store</a>.</p>
<p>All of these sound possible to me. I&#8217;m convinced I could successfully implement these strategies. In fact, I&#8217;m planning to put more than one of these into place in the near future (but that&#8217;s a story for another day). </p>
<h2>No Magic Solutions</h2>
<p>One thing has stood out with everything I&#8217;ve read. None of these strategies will make me rich overnight. Many people point out that <a title="Garry Conn&#x27;s post on how making money is actually hard work" href="http://www.garryconn.com/why-in-the-hell-do-you-want-to-make-money-online.php" target="_blank">making money online is not an easy business</a>. It&#8217;s possible, but it&#8217;s hard work and slow progress.</p>
<p>So, let&#8217;s stop for a minute. I&#8217;m spending lots of time learning something new, which is going to be hard work and take time to pay off? That&#8217;s fine. But why not make money from what I already know? I should be able to start earning right away. <em>I&#8217;d forgotten the simplest route</em>.</p>
<h2>Leveraging Your Existing Skill Set</h2>
<p>It will be different for everyone, but I&#x2019;m sure that everyone has some skill or talent that they can leverage to <a href="http://ez-onlinemoney.com/">make money online</a>. </p>
<p>Think about your skills. Are you an SEO expert? Provide a website review service. A niche marketer? Provide a consulting service for starters. An architectural assistant? Do some freelance work. Get the picture?</p>
<p>Of course, many people do this already, but I haven&#8217;t seen anyone <strong>writing about it</strong> as a way to <strong>make money online</strong>. I&#8217;m not sure if it&#8217;s because people think it&#8217;s obvious or whether it&#8217;s not glamorous enough. Maybe it&#8217;s because there&#8217;s not as much mileage in telling people to do what they already know! </p>
<p>Whatever the reason, <em>if you&#8217;re not utilising your skills you need to think about how you may be able to do this</em>.</p>
<h2>Argument Against Leveraging Your Skill Set</h2>
<p>There is an argument against offering services which use your skill set: In most cases, it won&#8217;t lead to passive income. To keep the revenue stream going, you will have to actively keep working. </p>
<p>It may be better to spend the time developing passive income streams, which only require minimal work to maintain.</p>
<h2>But There Are Follow-on Benefits</h2>
<p>In addition to the immediate monetary benefits, there are follow-on benefits of offering services based on your skill set. </p>
<p>Providing services can help you position yourself as an <strong>expert in your niche</strong>, driving your blog forward and leading to greater opportunities down the line. It&#8217;s likely to lead to loyal readers, higher traffic, <a href="http://www.everyonesarticles.com/Category/Advertising/65">increased advertising</a> income, higher sales of ebooks and so on.</p>
<h2>How I&#8217;m Going To Leverage My Skill Set</h2>
<p>What skills do I have? I can write <a title="My WordPress plugins page" href="http://www.scratch99.com/wordpress-plugins-by-stephen-cronin/" target="_blank"><strong>WordPress plugins</strong></a> and develop websites. </p>
<p>I have other skills too, but these are the ones I think will <em>best translate into online income</em>. When I answered a <a title="RT challenges me to rewrite the Simple Spam Filter plugin" href="http://www.untwistedvortex.com/2007/11/12/a-wordpress-plugin-rewrite-challenge/" target="_blank" class="broken_link">WordPress Plugin Rewrite Challenge</a>, I realised there&#8217;s a market for <em>custom WordPress plugins</em> and <em>plugin modification</em> that I can tap into. </p>
<p>I&#8217;m now offering <a title="My Services page offering custom WordPress plugins and web development services" href="http://www.scratch99.com/services/" target="_blank"><strong>services</strong></a>, including custom WordPress development. I&#8217;m not expecting to make a lot of money (one plan is free!), but it&#8217;s more likely to provide an immediate revenue stream than the other strategies are. I&#8217;ll persist with those as well, but services offer better short term value for me. </p>
<h2>The Final Word</h2>
<p>If you don&#8217;t offer <em>services based on your existing skill set</em>, you need to consider <em>what services you could offer</em>. By all means, pursue other ways of making money online, but don&#8217;t pass up an option which may lead to <strong>easy money</strong>.</p>
<p>What do you think? Let me know if you agree, or if you think I&#8217;m wrong!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.scratch99.com/2007/12/make-money-online-dont-forget-your-existing-skills/feed/</wfw:commentRss>
		<slash:comments>145</slash:comments>
		</item>
		<item>
		<title>I Signed Up For PayPerPost</title>
		<link>http://www.scratch99.com/2007/11/signed-up-for-payperpost/</link>
		<comments>http://www.scratch99.com/2007/11/signed-up-for-payperpost/#comments</comments>
		<pubDate>Thu, 01 Nov 2007 03:48:11 +0000</pubDate>
		<dc:creator>Stephen Cronin</dc:creator>
				<category><![CDATA[Monetization]]></category>
		<category><![CDATA[Adsense]]></category>
		<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Sponsored Posts]]></category>

		<guid isPermaLink="false">http://www.scratch99.com/2007/11/signed-up-for-payperpost/</guid>
		<description><![CDATA[Copyright © 2010 Stephen Cronin. Visit the original article at http://www.scratch99.com/2007/11/signed-up-for-payperpost/.When I started blogging five months ago, I hadn&#8217;t even considered the possibility of writing sponsored posts. To be honest, I only wanted to write original content and I was against memes, awards, sponsored posts, etc.
EDIT: Since writing this post, I&#8217;ve changed my views somewhat. [...]]]></description>
			<content:encoded><![CDATA[Copyright © 2010 <a href="http://www.scratch99.com">Stephen Cronin</a>. Visit the original article at <a href="http://www.scratch99.com/2007/11/signed-up-for-payperpost/">http://www.scratch99.com/2007/11/signed-up-for-payperpost/</a>.<br /><p>When I started blogging five months ago, I hadn&#8217;t even considered the possibility of writing sponsored posts. To be honest, I only wanted to write original content and I was against memes, awards, sponsored posts, etc.</p>
<div class="csstextbox1">EDIT: Since writing this post, I&#8217;ve changed my views somewhat. Please read my post on the <a href="http://www.scratch99.com/2008/01/toolbar-pagerank-penalty/"><strong>toolbar PageRank penalty</strong></a> for more information.</div>
<p>I&#8217;ve just signed up with <strong>payperpost</strong>, so obviously my views have changed!</p>
<p>Why? Mainly because of the many blogs I frequent which include sponsored posts. In general these are well done and don&#8217;t detract from the site &#8211; in fact they often <strong>add value to the site</strong>. RT at Untwisted Vortex always makes sponsored posts entertaining and informative. They are worth reading even if you don&#8217;t need the sponsored service right now. I&#8217;m guessing people will remember his posts when they <strong>do</strong> need that service.</p>
<p>Now, why did I choose <strong>PayPerPost</strong>? Here are some of the reasons:</p>
<ol>
<li>I&#8217;ve read many reviews of sponsored post services and <strong>PayPerPost</strong> <em>always</em> seem to come first. </li>
<li>Most of the blogger I know that write sponsored posts are using <strong>PayPerPost</strong>. </li>
<li>RT from Untwisted Vortex has been an inspiration to me in many ways and he recommends <strong>PayPerPost</strong>. </li>
</ol>
<p><strong>PayPerPost</strong> also have a reputation for having <strong>lots of opportunities</strong> and are known for <strong>being reliable</strong> (in terms of payment), two things which are important to bloggers. </p>
<p>At the end of the day, <strong>PayPerPost</strong> was really the only contender.</p>
<p>Will I make lots of money through <strong>PayPerPost</strong>? Who knows! Probably not enough to give up my day job, although it seems there are some bloggers who come close to that.</p>
<p>Personally, all I want is to cover my hosting costs and to occasionally take my family out to dinner. Google Adsense definitely isn&#8217;t going to allow that. <strong>PayPerPost</strong> will.</p>
<p><img src="http://tinyurl.com/2zdkue" /><br />
<a href="http://www.payperpost.com/?utm_source=opportunity&amp;utm_medium=disclosure%2Bbadge" rel="nofollow"></a> </p>
<script type="text/javascript">Nifty("div.csstextbox1","bgcolor-#FFFFFF");</script>]]></content:encoded>
			<wfw:commentRss>http://www.scratch99.com/2007/11/signed-up-for-payperpost/feed/</wfw:commentRss>
		<slash:comments>35</slash:comments>
		</item>
		<item>
		<title>I Got My 21 Cents&#8230;</title>
		<link>http://www.scratch99.com/2007/09/google-adsense-i-got-my-21-cents/</link>
		<comments>http://www.scratch99.com/2007/09/google-adsense-i-got-my-21-cents/#comments</comments>
		<pubDate>Sat, 29 Sep 2007 08:28:11 +0000</pubDate>
		<dc:creator>Stephen Cronin</dc:creator>
				<category><![CDATA[Monetization]]></category>
		<category><![CDATA[Adsense]]></category>
		<category><![CDATA[firefox extensions]]></category>
		<category><![CDATA[Wordpress Plugins]]></category>

		<guid isPermaLink="false">http://www.scratch99.com/2007/09/google-adsense-i-got-my-21-cents/</guid>
		<description><![CDATA[Copyright © 2010 Stephen Cronin. Visit the original article at http://www.scratch99.com/2007/09/google-adsense-i-got-my-21-cents/.22 cents actually. A day or so after enabling Google Adsense, my blog generated its first income from a click. A day later, another cent appeared. I&#8217;m not sure where the extra cent came from. It&#8217;s not from a click and it can&#8217;t be from [...]]]></description>
			<content:encoded><![CDATA[Copyright © 2010 <a href="http://www.scratch99.com">Stephen Cronin</a>. Visit the original article at <a href="http://www.scratch99.com/2007/09/google-adsense-i-got-my-21-cents/">http://www.scratch99.com/2007/09/google-adsense-i-got-my-21-cents/</a>.<br /><p>22 cents actually. A day or so after enabling <strong>Google Adsense</strong>, my blog generated its first income from a click. A day later, another cent appeared. I&#8217;m not sure where the extra cent came from. It&#8217;s not from a click and it can&#8217;t be from impressions. I guess Google were just feeling generous.</p>
<h2>Not Adsense!</h2>
<p>I&#8217;ve read many posts recently saying that <em>Adsense doesn&#8217;t perform as well as other options</em>. Some people are even removing Adsense from their sites. It seems that Adsense is no longer the flavour of the month.</p>
<p>As I&#8217;ve said elsewhere, I know that Adsense will probably not work well with this blog&#8217;s content or with my target audience. I know there&#8217;s a chance it may even <em>drive some readers away</em>. I know there are other ways of monetizing a site. Despite all this, I am giving Adsense a whirl. Why?</p>
<p>I&#8217;m starting to do a little freelance web development. Adsense does suit some sites very well and is popular with my potential client base, so I need to have first hand knowledge of working with it. </p>
<p>I&#8217;ll also be trying out other options as well, but don&#8217;t worry, I&#8217;ll keep the ads to a minimum on the site. Making money is not the primary aim of this blog.</p>
<h2>Obsessive Behaviour</h2>
<p>Of course, despite my previous statement, I fell into the very common trap of checking the Adsense site every 10 minutes to see if I was a millionaire yet. Not quite, but that first 21 cents felt almost as good!</p>
<p>I quickly tired of constantly checking the total, but didn&#8217;t give up. Instead I installed the <a title="The home page of the AdSense Earnings Reports plugin" href="http://adsense-wordpress-plugin.ayanev.com/" target="_blank"><strong>AdSense Earnings Reports plugin</strong></a> which displays your Adsense results in the Admin area of <strong>WordPress</strong>. Unfortunately the plugin didn&#8217;t work for me (nothing happened, the stats weren&#8217;t populated, not even to say 0). </p>
<p>Then I read a &#8216;Top xx Firefox Extensions&#8217; post (I lost the URL unfortunately), which lead me to the <a title="The Adsense Notifier extension for Firefox" href="https://addons.mozilla.org/en-US/firefox/addon/500" target="_blank"><strong>Adsense Notifier extension</strong></a> for <strong>Firefox</strong>. I spend more time in Firefox than I do on my Admin screen (in Firefox), so my obsession can be fed more easily with this! However, there is a problem with it. You must manually log in before it will work (it should log you in automatically). </p>
<p>My guess is that Google has changed something recently that has broken both the plugin and the extension. Then again, I can&#8217;t find any reports of other people having problems, so it may just be me.</p>
<p>Anyway, my obsession is fading now. I&#8217;ll just check it one last time&#8230;</p>
<h2>Ad Placement</h2>
<p>For the moment, I am putting one 468 x 60 Banner in the post body, one 120 x 240 Vertical Banner in the sidebar and one referral unit in the sidebar.</p>
<p>I have tried to <em>blend the ads in</em> by using similar colours to my theme. I don&#8217;t want them to stand out too much and annoy everyone. Neither do I want people to be blind to them.</p>
<p>However, I have placed a border around them as I don&#8217;t want them to blend in too much and have people click them by accident (although this seems to be essentially what many Adsense gurus recommend).</p>
<p>I&#8217;m interested in any feedback on this. As a reader, do <strong>you</strong> prefer ads to stand out clearly, or do you prefer them to blend in? If you use Adsense on your site, have you found it to be better to blend them in?</p>
<h2>Displaying The Ads</h2>
<p>There are quite a few <a title="A list of WordPress plugins for Adsense by Quick Online Tips" href="http://www.quickonlinetips.com/archives/2006/11/10-best-wordpress-plugins-for-google-adsense/" target="_blank"><strong>WordPress plugins</strong> for displaying Adsense</a>, but at the moment I&#8217;m using a &#8216;home grown&#8217; solution for the post body. I wrote a quick plugin (took 5 minutes) that replaces a tag I enter with my Adsense code. </p>
<p>This is probably not the long term solution. I&#8217;ve had a quick look at the <a title="The home page of the Adsense-Deluxe plugin" href="http://www.acmetech.com/blog/2005/07/26/adsense-deluxe-wordpress-plugin/" target="_blank"><strong>Adsense-Deluxe plugin</strong></a>, which seems pretty powerful. I&#8217;ve also been hearing good things about the <strong>Shylock Adsense plugin</strong>, so I may have a look at that. Any advice is welcome.</p>
<p>For the sidebar, I&#8217;m using the <a title="The Google Adsense widget created by Otto from OttoDestruct" href="http://ottodestruct.com/blog/2006/04/09/fun-with-widgets/" target="_blank"><strong>Google Adsense widget</strong></a> plugin by Otto. I tried text widgets at first, but I use quite a few already and after a while it&#8217;s hard to remember what Text 4 is for. Otto&#8217;s plugin gives you widgets which are basically text widgets but with Google Adsense in the widget title.</p>
<p>The number of Adsense widgets is restricted to 4 (the maximum number of units allowed under <em>Google&#8217;s old Terms of Service</em>). These days you are allowed up to 11 units when you combine ad units, link units, referrals and searches. I&#8217;m not planning to use that many, but if I do, I could always use text widgets for the extra ones!</p>
<h2>The Final Word</h2>
<p>I&#8217;m looking forward to seeing how Adsense works. I&#8217;ll probably play with the positioning and type of ads to see how they perform. It&#8217;s a learning experience for me.</p>
<p>If you have any tips for me, please leave a comment. Thanks.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.scratch99.com/2007/09/google-adsense-i-got-my-21-cents/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Buy Me A Coffee, I&#8217;ll Sell You A Link?</title>
		<link>http://www.scratch99.com/2007/08/buy-me-a-coffee-sell-you-a-link/</link>
		<comments>http://www.scratch99.com/2007/08/buy-me-a-coffee-sell-you-a-link/#comments</comments>
		<pubDate>Wed, 15 Aug 2007 16:14:09 +0000</pubDate>
		<dc:creator>Stephen Cronin</dc:creator>
				<category><![CDATA[Monetization]]></category>
		<category><![CDATA[Dofollow]]></category>
		<category><![CDATA[pagerank]]></category>
		<category><![CDATA[selling links]]></category>
		<category><![CDATA[Wordpress Plugins]]></category>

		<guid isPermaLink="false">http://www.scratch99.com/2007/08/buy-me-a-coffee-sell-you-a-link/</guid>
		<description><![CDATA[Copyright © 2010 Stephen Cronin. Visit the original article at http://www.scratch99.com/2007/08/buy-me-a-coffee-sell-you-a-link/.Most bloggers think that selling dofollow links is bad, right? But what if you do it in a roundabout way, without really intending to? Let me explain&#8230;
It started when I read Blog Begging or Donations? on the Cayman Host Blog. This discusses whether the rise [...]]]></description>
			<content:encoded><![CDATA[Copyright © 2010 <a href="http://www.scratch99.com">Stephen Cronin</a>. Visit the original article at <a href="http://www.scratch99.com/2007/08/buy-me-a-coffee-sell-you-a-link/">http://www.scratch99.com/2007/08/buy-me-a-coffee-sell-you-a-link/</a>.<br /><p>Most bloggers think that <strong>selling dofollow links</strong> is bad, right? But what if you do it in a roundabout way, without really intending to? Let me explain&#8230;</p>
<p>It started when I read <a href="http://www.thecaymanhost.com/blog/item/blog-begging-or-donations" title="Article on the Cayman Host Blog discussing the merits of donation plugins">Blog Begging or Donations?</a> on the Cayman Host Blog. This discusses whether the rise of donation plugins like <strong>Buy Me A Beer</strong> or <strong>Buy Me A Coffee</strong> is a good thing or not. </p>
<p>While I can&#8217;t see myself ever asking for donations for a normal post, I am considering it for my <a href="http://www.scratch99.com/wordpress-plugin-dualfeeds/" title="My DualFeeds WordPress plugin which allows you to offer readers both a full post and a summary feed"><strong>DualFeeds plugin</strong></a> page. </p>
<p>It came to me that I should create a list of links, on the plugin page, to anyone who donated. This seemed like a nice gesture for people willing to give me some of their <a href="http://www.everyonesarticles.com/Category/Business/63">hard earned money</a>.</p>
<p>Then I thought, &#8220;Hey, they&#8217;d benefit from the fact that I have nofollow disabled &#8211; maybe that&#8217;s even an incentive for them to donate&#8221;. Not only are they rewarding me for the plugin, they are getting a <strong>dofollow link</strong> on a page that might end up with a decent PageRank (the decent PageRank might be some time away, given this is a new blog).</p>
<div class="csstextbox1">Of course, as many people have pointed out in the past, <strong>buying links isn&#8217;t really worth it</strong>. You only get a small sliver of PageRank and you could get the same benefit by picking a dofollow blog with a high PR and making one comment for free.</div>
<p>But it raises questions in my mind. Is it okay to give links to people in return for a donation? Am I crossing the line if I use the dofollow link to sell making a donation?</p>
<p>Of course I haven&#8217;t actually decided yet whether I will ask for a donation, but I&#8217;m interested to know what you all think about this.</p>
<script type="text/javascript">Nifty("div.csstextbox1","bgcolor-#FFFFFF");</script>]]></content:encoded>
			<wfw:commentRss>http://www.scratch99.com/2007/08/buy-me-a-coffee-sell-you-a-link/feed/</wfw:commentRss>
		<slash:comments>21</slash:comments>
		</item>
	</channel>
</rss>
