<?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/"
xmlns:media="http://search.yahoo.com/mrss/"><channel><title>Yoast &#187; Affiliate Marketing</title> <atom:link href="http://yoast.com/tag/affiliate-marketing/feed/" rel="self" type="application/rss+xml" /><link>http://yoast.com</link> <description>Tweaking Websites</description> <lastBuildDate>Mon, 21 May 2012 18:33:54 +0000</lastBuildDate> <language>en-US</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.4-beta4-20825</generator> <image><title>Yoast</title> <url>http://yoast.com/wp-content/themes/yoast-v2/images/yoast-logo-rss.png</url><link>http://yoast.com</link> <width>144</width> <height>103</height> <description>Tweaking Websites</description> </image> <item><title>Tracking Outbound / Affiliate Links with getClicky</title><link>http://yoast.com/tracking-outbound-affiliate-links-with-getclicky/#utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=tracking-outbound-affiliate-links-with-getclicky</link> <comments>http://yoast.com/tracking-outbound-affiliate-links-with-getclicky/#comments</comments> <pubDate>Thu, 26 Jan 2012 10:30:09 +0000</pubDate> <dc:creator>Joost de Valk</dc:creator> <category><![CDATA[Analytics]]></category> <category><![CDATA[Affiliate Marketing]]></category> <category><![CDATA[Clicky]]></category><guid
isPermaLink="false">http://yoast.com/?p=45204</guid> <description><![CDATA[<p>I use Clicky for most of my day-to-day tracking and analysis, only using Google Analytics for the harder analyses. One of the things Clicky can do most wonderfully is track outbound clicks. There's an issue however when you start routing your affiliate links through a script or on-site redirect. I redirect mine through /out/ here [...]</p><p><a
href="http://yoast.com/tracking-outbound-affiliate-links-with-getclicky/">Tracking Outbound / Affiliate Links with getClicky</a> is a post by <a
rel="author" href="http://yoast.com/author/joost/">Joost de Valk</a> on <a
href="http://yoast.com">Yoast - Tweaking Websites</a>.A good WordPress blog needs good hosting, you don't want your blog to be slow, or, even worse, down, do you? Check out my thoughts on <a
href="http://yoast.com/wordpress-hosting/">WordPress hosting</a>!</p>]]></description> <content:encoded><![CDATA[<p><img
class="alignright size-full wp-image-5941" title="Clicky web analytics" src="http://cdn3.yoast.com/wp-content/uploads/2011/06/clicky-web-analytics.gif" alt="Clicky web analytics" width="148" height="56" />I use <a
class="track clicky_log_outbound" href="http://yoast.com/out/clicky/">Clicky</a> for most of my day-to-day tracking and analysis, only using Google Analytics for the harder analyses. One of the things Clicky can do most wonderfully is track outbound clicks. There's an issue however when you start routing your affiliate links through a script or on-site redirect. I redirect mine through /out/ here on yoast.com, but not all of the /out/ links need to be tracked. Let me show you how I <em>do</em> track the ones I need to track.</p><h2>Forcing Clicky to track a link as outbound</h2><p>First of all, you need to know that when you add a class <code>clicky_log_outbound</code> to a link, Clicky will track each click on that link as an outbound link. Now I always add a class <code>track</code> or <code>aff</code> to my affiliate links that I want to have tracked, for instance:</p><pre class="brush: xml; title: ; notranslate">&lt;a class=&quot;track&quot; href=&quot;http://yoast.com/out/clicky/&quot;&gt;Clicky&lt;/a&gt;</pre><p>Of course I could manually add the clicky_log_outbound class, but that's just a tad bit too much work, especially as most of my links have been "classed" already and I might want to use this class for other stuff later on.</p><p>Now, I add a tiny filter function to my sites <em>functions.php</em> file, this searches for links with class <code>aff</code> or <code>track</code> and adds the <code>clicky_log_outbound</code> class:</p><pre class="brush: php; title: ; notranslate">function clicky_outbound_filter( $content ) {
	$content = preg_replace('/&lt;a([^&gt;]+)?class=&quot;(aff|track)&quot;([^&gt;]+)?&gt;/',
		'&lt;a\1class=&quot;\2 clicky_log_outbound&quot;\3&gt;', $content);
	return $content;
}

add_filter( 'the_content', 'clicky_outbound_filter', 10, 1 );</pre><p>That's it! Clicky will now track those links as outbound. Now let's set such a link up as a goal.</p><h2>Goal Tracking in Clicky</h2><p>For goal tracking you need to have a premium (read, paid) Clicky account, but it's well worth it. Setting up a goal is a piece of cake. You go to your site's analytics and then to Goals, Setup. You'll see this interface:</p><p><img
class="aligncenter size-full wp-image-45207" title="Clicky goal tracking" src="http://cdn3.yoast.com/wp-content/uploads/2012/01/clicky-goal-tracking.png" alt="Clicky goal tracking" width="499" height="596" /></p><p>You simply name the action, set the goal URL to be your outbound URL, you could do /out/clicky/ or, when you sometimes forget the last slash, /out/clicky*. You can set up revenue and even a funnel, a required page before one can reach that goal.</p><p>Once you've done that, the goals will show, in realtime, in your Goals overview and in your "bigscreen" Clicky display.</p><h2>More tracking power: campaigns</h2><p>This feature becomes even more powerful when you combine it with another great feature of Clicky; campaign tracking. Clicky fully supports the _utm type variables Google Analytics uses, so you can track campaigns and terms within campaigns. That is, in fact, how I did the tracking in yesterdays post about <a
title="On WordPress Dashboard Widgets" href="http://yoast.com/wordpress-dashboard-widgets/">WordPress Dashboard widgets</a>.</p><p><a
href="http://yoast.com/tracking-outbound-affiliate-links-with-getclicky/">Tracking Outbound / Affiliate Links with getClicky</a> is a post by <a
rel="author" href="http://yoast.com/author/joost/">Joost de Valk</a> on <a
href="http://yoast.com">Yoast - Tweaking Websites</a>.A good WordPress blog needs good hosting, you don't want your blog to be slow, or, even worse, down, do you? Check out my thoughts on <a
href="http://yoast.com/wordpress-hosting/">WordPress hosting</a>!</p>]]></content:encoded> <wfw:commentRss>http://yoast.com/tracking-outbound-affiliate-links-with-getclicky/feed/</wfw:commentRss> <slash:comments>17</slash:comments> <media:thumbnail url="http://cdn.yoast.com/wp-content/uploads/2011/06/clicky-web-analytics-125x56.gif" /> <media:content url="http://cdn3.yoast.com/wp-content/uploads/2011/06/clicky-web-analytics.gif" medium="image"> <media:title type="html">Clicky web analytics</media:title> <media:thumbnail url="http://cdn.yoast.com/wp-content/uploads/2011/06/clicky-web-analytics-125x56.gif" /> </media:content> <media:content url="http://cdn3.yoast.com/wp-content/uploads/2012/01/clicky-goal-tracking.png" medium="image"> <media:title type="html">Clicky goal tracking</media:title> <media:thumbnail url="http://cdn3.yoast.com/wp-content/uploads/2012/01/clicky-goal-tracking-125x125.png" /> </media:content> </item> <item><title>Event tracking, bounce rate and affiliate marketing</title><link>http://yoast.com/event-tracking-bounce-rate/#utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=event-tracking-bounce-rate</link> <comments>http://yoast.com/event-tracking-bounce-rate/#comments</comments> <pubDate>Sun, 17 Oct 2010 21:05:32 +0000</pubDate> <dc:creator>Joost de Valk</dc:creator> <category><![CDATA[Analytics]]></category> <category><![CDATA[Affiliate Marketing]]></category> <category><![CDATA[Google Analytics]]></category><guid
isPermaLink="false">http://yoast.com/?p=3409</guid> <description><![CDATA[<p>Apparently, the way event tracking tracking works in Analytics, and how it impacts bounce rate, is still not understood as widely as I expected it to be, and I'm not the only one to think that. So let me explain to you how bounce rate is influenced by (properly set up) event tracking, and how to [...]</p><p><a
href="http://yoast.com/event-tracking-bounce-rate/">Event tracking, bounce rate and affiliate marketing</a> is a post by <a
rel="author" href="http://yoast.com/author/joost/">Joost de Valk</a> on <a
href="http://yoast.com">Yoast - Tweaking Websites</a>.A good WordPress blog needs good hosting, you don't want your blog to be slow, or, even worse, down, do you? Check out my thoughts on <a
href="http://yoast.com/wordpress-hosting/">WordPress hosting</a>!</p>]]></description> <content:encoded><![CDATA[<p><img
class="alignright size-full wp-image-3411" title="Bounce Rate and Event Tracking" src="http://cdn2.yoast.com/wp-content/uploads/2010/10/bounce-question-mark-e1287349079216.jpg" alt="Bounce Rate and Event Tracking" width="200" height="200" />Apparently, the way event tracking tracking works in Analytics, and how it impacts bounce rate, is still not understood as widely as I expected it to be, and I'm <a
href="http://twitter.com/richardbaxter/status/27488364519">not the only one to think that</a>. So let me explain to you how bounce rate is influenced by (properly set up) event tracking, and how to do that setup.</p><h2>How event tracking influences bounce rate</h2><p>My buddy <a
href="http://kaushik.net/avinash/">Avinash</a> tweeted a link to <a
href="http://www.bruceclay.com/blog/2010/10/four-questions-avinash-kaushik/comment-page-1/#comment-34236">a comment</a> he left on a post that's actually <a
href="http://www.bruceclay.com/blog/2010/10/four-questions-avinash-kaushik/">an interview with him on the Bruce Clay blog</a>. In the comment he talks about for whom bounce rate is a good metric. Michael Gray, an "old time" SEO and affiliate, who apparently hasn't learned much about analytics in all that time ( just kidding Michael ;) ), <a
href="http://twitter.com/graywolf/status/27477462274">tweeted</a>:</p><blockquote><p>"As an affiliate or adsense publisher I want u to come and leave as quickly as possible how is that not a bounce."</p></blockquote><p>Let me state this very clearly: <strong>it is not a bounce</strong>. A bounce is a visit to your website that doesn't result in a second pageview or a desired action. If you're an affiliate, the outbound click might very well be your desired action. To be able to properly optimize your campaigns, you <em>should</em> track these outbound clicks. The "proper" way to do that is to either track them as pageviews, with the benefit of being able to tag them as goals but with the disadvantage of inflating pageviews, or as an event.</p><p>Or, as the <a
href="http://code.google.com/apis/analytics/docs/tracking/eventTrackerGuide.html#implementationConsiderations">Google Analytics documentation</a> describes it:</p><blockquote><p>"[...] a "bounce" is described as a single-page visit to your site. In Analytics, a bounce is calculated specifically as a session that triggers only a single GIF request, such as when a user comes to a single page on your website and then exits without causing any other request to the Analytics server for that session."</p></blockquote><p>So, if you track your outbound affiliate clicks as events they wouldn't counted as a bounce. This way, these outbound clicks would be counted as a separate action, making the visit into a "non bounce" or, which is maybe a better name, an "engaged visit". This is independent of whether you use Google Analytics or another package, you could for instance use <a
href="http://yoast.com/out/clicky/">Clicky</a>, a very good alternative for those of you with tin foil hats.</p><h2>How to implement event tracking for affiliate links</h2><p>In the examples below I'll assume you've properly <a
href="http://yoast.com/affiliate-links-and-seo/">hidden your affiliate links</a> with a redirect:</p><h3>Google Analytics</h3><p>For those of you who use Google Analytics and are not smart enough to use WordPress and my <a
href="http://yoast.com/wordpress/google-analytics/">Google Analytics plugin</a>, you should be tagging your outbound affiliate links in a way similar to this:</p><pre class="brush: php; html-script: true; title: ; notranslate">&lt;a href=&quot;http://yoast.com/out/vps/&quot;
  onclick=&quot;javascript:_gaq.push(['_trackEvent','aff','/out/vps/']);&quot;&gt;
  VPS.net
&lt;/a&gt;</pre><p>This example uses the <a
href="http://code.google.com/apis/analytics/docs/tracking/asyncUsageGuide.html">asynchronous tracking</a> method, if you want reliable tracking of outbound clicks like this, you should be using that, as it's a lot more reliable than the old synchronous method.</p><h3>Clicky</h3><p>In Clicky outbound link tracking of links like this is <a
href="http://getclicky.com/help/customization#csstags">ridiculously simple</a>, you don't even have to know javascript:</p><pre class="brush: php; html-script: true; title: ; notranslate">&lt;a class=&quot;clicky_log_outbound&quot; href=&quot;/out/vps/&quot;&gt;
  VPS.net
&lt;/a&gt;</pre><h2>Conclusion</h2><p>In conclusion: please don't think you have a high bounce rate <em>because</em> you have an affiliate site. You have to tag your links properly, if you want to do serious analysis. The minute you do, you should be seeing these clicks appear in your analytics and your bounce rate go down, and you no longer have to claim visits that aren't bounces as bounces.</p><p><a
href="http://yoast.com/event-tracking-bounce-rate/">Event tracking, bounce rate and affiliate marketing</a> is a post by <a
rel="author" href="http://yoast.com/author/joost/">Joost de Valk</a> on <a
href="http://yoast.com">Yoast - Tweaking Websites</a>.A good WordPress blog needs good hosting, you don't want your blog to be slow, or, even worse, down, do you? Check out my thoughts on <a
href="http://yoast.com/wordpress-hosting/">WordPress hosting</a>!</p>]]></content:encoded> <wfw:commentRss>http://yoast.com/event-tracking-bounce-rate/feed/</wfw:commentRss> <slash:comments>36</slash:comments> <media:thumbnail url="http://cdn3.yoast.com/wp-content/uploads/2010/10/bounce-question-mark-e1287349079216-125x125.jpg" /> <media:content url="http://cdn2.yoast.com/wp-content/uploads/2010/10/bounce-question-mark-e1287349079216.jpg" medium="image"> <media:title type="html">bounce-question-mark</media:title> <media:thumbnail url="http://cdn3.yoast.com/wp-content/uploads/2010/10/bounce-question-mark-e1287349079216-125x125.jpg" /> </media:content> </item> <item><title>Affiliate Links and SEO</title><link>http://yoast.com/affiliate-links-and-seo/#utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=affiliate-links-and-seo</link> <comments>http://yoast.com/affiliate-links-and-seo/#comments</comments> <pubDate>Wed, 29 Sep 2010 09:23:25 +0000</pubDate> <dc:creator>Joost de Valk</dc:creator> <category><![CDATA[SEO]]></category> <category><![CDATA[WordPress]]></category> <category><![CDATA[Affiliate Marketing]]></category><guid
isPermaLink="false">http://yoast.com/?p=3194</guid> <description><![CDATA[<p>Google will always say they won't penalize you for affiliate links per se, but for thin content around it. I can make this into a long story, but let's make it short: there's very good reasons for me and several other highly respected SEO's and affiliates around the world to think otherwise. Let me show [...]</p><p><a
href="http://yoast.com/affiliate-links-and-seo/">Affiliate Links and SEO</a> is a post by <a
rel="author" href="http://yoast.com/author/joost/">Joost de Valk</a> on <a
href="http://yoast.com">Yoast - Tweaking Websites</a>.A good WordPress blog needs good hosting, you don't want your blog to be slow, or, even worse, down, do you? Check out my thoughts on <a
href="http://yoast.com/wordpress-hosting/">WordPress hosting</a>!</p>]]></description> <content:encoded><![CDATA[<p>Google will always say they won't penalize you for affiliate links per se, but for thin content around it. I can make this into a long story, but let's make it short: there's very good reasons for me and several other highly respected SEO's and affiliates around the world to think otherwise. Let me show you how to hide them.</p><p>In <a
href="http://wp-community.org/2010/09/29/genesis-ms-wordpress-com/">yesterday's WordPress Podcast</a>, Nathan Rice of StudioPress pointed us at a new plugin they've developed called <a
href="http://www.studiopress.com/plugins/simple-urls">Simple URLs</a>. It works great, and I thought I'd use it to show you how to properly hide your affiliate links from Google. First of all, install that plugin. It will create a new custom post type and after that, you can very simply add a new redirect:</p><div
id="attachment_3198" class="wp-caption aligncenter" style="width: 560px"><img
class="size-full wp-image-3198" title="Creating a redirect with Simple URL's" src="http://cdn2.yoast.com/wp-content/uploads/2010/09/simple-urls.png" alt="Creating a redirect with Simple URL's" width="550" height="197" /><p
class="wp-caption-text">Creating a redirect with Simple URL&#39;s</p></div><p>Hit publish, and your redirect will work. The plugin will keep track of how many people followed the URL too, and show you in the overview:</p><div
id="attachment_3199" class="wp-caption aligncenter" style="width: 560px"><img
class="size-full wp-image-3199" title="Simple URL's overview and click statistics" src="http://cdn3.yoast.com/wp-content/uploads/2010/09/simple-urls-stats.png" alt="Simple URL's overview and click statistics" width="550" height="215" /><p
class="wp-caption-text">Simple URL&#39;s overview and click statistics</p></div><p>Now, you've hidden your affiliate link. However, Simple URLs will do a straight 301 redirect, this is good for lots of cases, but in this case that would mean Google would still end up at the final destination, and we don't want that. So what you do is very simple: you go into your site's robots.txt file, and you add one line:</p><pre class="brush: plain; title: ; notranslate">Disallow: /go/</pre><p>If you didn't have a robots.txt file yet, you'd need to have at least one line above that:</p><pre class="brush: plain; title: ; notranslate">User-Agent: *</pre><p>This means that the lines below are valid for all search engines.</p><p>This will prevent search engines from following those links, and thus prevents you from being penalized for those affiliate links. Of course, if you're a bit more hard core, the best way would be to go one step further. Then you'd do a conditional redirect on those links: if it was a search engine spider, you'd redirect them back to your homepage or another post, if it was a normal user, you'd redirect them to the affiliate link. That's a bit shady though, so I wouldn't recommend doing that if you're not 100% sure you know what you're doing.</p><p>Now if you start doing this, it's also useful to add the outbound click tracking in my <a
href="http://yoast.com/wordpress/google-analytics/">Google Analytics plugin</a>. If you've enabled outbound click tracking, it will track your affiliate link clicks as events in Google Analytics:</p><div
id="attachment_3201" class="wp-caption aligncenter" style="width: 560px"><a
href="http://yoast.com/wordpress/google-analytics/"><img
class="size-full wp-image-3201" title="Google Analytics for WordPress  click tracking setup" src="http://cdn3.yoast.com/wp-content/uploads/2010/09/Google-Analytics-click-tracking.png" alt="Google Analytics for WordPress  click tracking setup" width="550" height="216" /></a><p
class="wp-caption-text">Google Analytics for WordPress  click tracking setup</p></div><p>These will then show up in Analytics, go to Content &gt; Event Tracking &gt; Categories, and you'll see something like this, as you can see the affiliate links have been suffixed with the label "aff" I chose above:</p><div
id="attachment_3202" class="wp-caption aligncenter" style="width: 216px"><img
class="size-full wp-image-3202" title="affiliate clicks in Google Analytics" src="http://cdn2.yoast.com/wp-content/uploads/2010/09/affiliate-clicks.png" alt="affiliate clicks in Google Analytics" width="206" height="317" /><p
class="wp-caption-text">affiliate clicks in Google Analytics</p></div><p>Good luck making some money on affiliate marketing, and make sure to hide those affiliate links!</p><p><a
href="http://yoast.com/affiliate-links-and-seo/">Affiliate Links and SEO</a> is a post by <a
rel="author" href="http://yoast.com/author/joost/">Joost de Valk</a> on <a
href="http://yoast.com">Yoast - Tweaking Websites</a>.A good WordPress blog needs good hosting, you don't want your blog to be slow, or, even worse, down, do you? Check out my thoughts on <a
href="http://yoast.com/wordpress-hosting/">WordPress hosting</a>!</p>]]></content:encoded> <wfw:commentRss>http://yoast.com/affiliate-links-and-seo/feed/</wfw:commentRss> <slash:comments>53</slash:comments> <media:thumbnail url="http://cdn2.yoast.com/wp-content/uploads/2010/09/simple-urls-125x125.png" /> <media:content url="http://cdn2.yoast.com/wp-content/uploads/2010/09/simple-urls.png" medium="image"> <media:title type="html">Creating a redirect with Simple URL&#8217;s</media:title> <media:description type="html">Creating a redirect with Simple URL&#039;s</media:description> <media:thumbnail url="http://cdn2.yoast.com/wp-content/uploads/2010/09/simple-urls-125x125.png" /> </media:content> <media:content url="http://cdn3.yoast.com/wp-content/uploads/2010/09/simple-urls-stats.png" medium="image"> <media:title type="html">Simple URL&#8217;s overview and click statistics</media:title> <media:description type="html">Simple URL&#039;s overview and click statistics</media:description> <media:thumbnail url="http://cdn3.yoast.com/wp-content/uploads/2010/09/simple-urls-stats-125x125.png" /> </media:content> <media:content url="http://cdn3.yoast.com/wp-content/uploads/2010/09/Google-Analytics-click-tracking.png" medium="image"> <media:title type="html">Google Analytics for WordPress  click tracking setup</media:title> <media:description type="html">Google Analytics for WordPress  click tracking setup</media:description> <media:thumbnail url="http://cdn2.yoast.com/wp-content/uploads/2010/09/Google-Analytics-click-tracking-125x125.png" /> </media:content> <media:content url="http://cdn2.yoast.com/wp-content/uploads/2010/09/affiliate-clicks.png" medium="image"> <media:title type="html">affiliate clicks in Google Analytics</media:title> <media:description type="html">affiliate clicks in Google Analytics</media:description> <media:thumbnail url="http://cdn3.yoast.com/wp-content/uploads/2010/09/affiliate-clicks-125x125.png" /> </media:content> </item> <item><title>Making money online &#8211; increasing profits</title><link>http://yoast.com/making-money-online-increasing-profits/#utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=making-money-online-increasing-profits</link> <comments>http://yoast.com/making-money-online-increasing-profits/#comments</comments> <pubDate>Wed, 06 Feb 2008 19:39:13 +0000</pubDate> <dc:creator>Joost de Valk</dc:creator> <category><![CDATA[Usability & Conversion]]></category> <category><![CDATA[WordPress]]></category> <category><![CDATA[Affiliate Marketing]]></category><guid
isPermaLink="false">http://www.joostdevalk.nl/making-money-online-increasing-profits/</guid> <description><![CDATA[<p>Making money online isn't too hard, if you're a web developer like me. You just sell yourself for a certain hourly rate and if you're any good, projects will flow in. That's what's been happening for the last year for me at least. I started AlthA Web Design, and I've been swamped with work since. [...]</p><p><a
href="http://yoast.com/making-money-online-increasing-profits/">Making money online &#8211; increasing profits</a> is a post by <a
rel="author" href="http://yoast.com/author/joost/">Joost de Valk</a> on <a
href="http://yoast.com">Yoast - Tweaking Websites</a>.A good WordPress blog needs good hosting, you don't want your blog to be slow, or, even worse, down, do you? Check out my thoughts on <a
href="http://yoast.com/wordpress-hosting/">WordPress hosting</a>!</p>]]></description> <content:encoded><![CDATA[<p>Making money online isn't too hard, if you're a web developer like me. You just sell yourself for a certain hourly rate and if you're any good, projects will flow in. That's what's been happening for the last year for me at least. I started <a
href="http://www.altha.co.uk/">AlthA Web Design</a>, and I've been swamped with work since. There's only one problem with that: I'm lazy.</p><p><span
id="more-541"></span><img
src="http://cdn.yoast.com/wp-content/uploads/2008/02/dollar-sign.jpg" style="width: 200px; height: 238px" alt="Dollar sign" align="right" height="238" width="200" />Basically, I want to make more money, online and offline, and do less work. Now I could increase my hourly rate of course, but there's an inherent problem with hourly rates: they limit the amount of money you can make in an hour. So I've decided I'll do some other stuff. First is monetizing this site, a little. In the sidebar you see 2 banners now, I will sell a maximum of 4 spots in total, and do some paid reviews. I will only do paid reviews for stuff that interests me and you, though, so it should all still be relevant for you, as a reader.</p><p>Next to that I'll be working on more WordPress stuff, together with <a
href="http://www.adii.co.za">Adriaan Pienaar</a>. He's built some great <a
href="http://yoast.com/out/premiumnews/">Premium News Themes for WordPress</a>, which we'll be working on together. This is actually my dream scenario: making money on doing cool stuff with WordPress.</p><p>I've got some other tricks up my sleeve as well, also to do with WordPress, you'll be seeing those roll out over the coming months!</p><p><a
href="http://yoast.com/making-money-online-increasing-profits/">Making money online &#8211; increasing profits</a> is a post by <a
rel="author" href="http://yoast.com/author/joost/">Joost de Valk</a> on <a
href="http://yoast.com">Yoast - Tweaking Websites</a>.A good WordPress blog needs good hosting, you don't want your blog to be slow, or, even worse, down, do you? Check out my thoughts on <a
href="http://yoast.com/wordpress-hosting/">WordPress hosting</a>!</p>]]></content:encoded> <wfw:commentRss>http://yoast.com/making-money-online-increasing-profits/feed/</wfw:commentRss> <slash:comments>23</slash:comments> <media:thumbnail url="http://cdn.yoast.com/wp-content/uploads/2008/02/dollar-sign.jpg" /> <media:content url="http://cdn.yoast.com/wp-content/uploads/2008/02/dollar-sign.jpg" medium="image"> <media:title type="html">Dollar sign</media:title> </media:content> </item> <item><title>Kevin Ryan &amp; Jeff Ferguson of Napster</title><link>http://yoast.com/kevin-ryan-jeff-ferguson-of-napster/#utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=kevin-ryan-jeff-ferguson-of-napster</link> <comments>http://yoast.com/kevin-ryan-jeff-ferguson-of-napster/#comments</comments> <pubDate>Fri, 26 Oct 2007 16:24:03 +0000</pubDate> <dc:creator>Joost de Valk</dc:creator> <category><![CDATA[Usability & Conversion]]></category> <category><![CDATA[Affiliate Marketing]]></category> <category><![CDATA[Conferences]]></category> <category><![CDATA[PPC]]></category><guid
isPermaLink="false">http://www.joostdevalk.nl/kevin-ryan-jeff-ferguson-of-napster/</guid> <description><![CDATA[<p>Jeff is quite an interesting guy, he worked as an SEO and later worked as online marketing manager for Hilton before becoming the director of online marketing for Napster. He talked a bit about how it was to set up the online marketing strategy for Hilton, including an affiliate program, it turns out he had [...]</p><p><a
href="http://yoast.com/kevin-ryan-jeff-ferguson-of-napster/">Kevin Ryan &#038; Jeff Ferguson of Napster</a> is a post by <a
rel="author" href="http://yoast.com/author/joost/">Joost de Valk</a> on <a
href="http://yoast.com">Yoast - Tweaking Websites</a>.A good WordPress blog needs good hosting, you don't want your blog to be slow, or, even worse, down, do you? Check out my thoughts on <a
href="http://yoast.com/wordpress-hosting/">WordPress hosting</a>!</p>]]></description> <content:encoded><![CDATA[<p>Jeff is quite an interesting guy, he worked as an SEO and later worked as online marketing manager for Hilton before becoming the director of online marketing for Napster. He talked a bit about how it was to set up the online marketing strategy for Hilton, including an affiliate program, it turns out he had to do that all on his own...</p><p>They're talking about how rules were being created in the process of building up this affiliate program, companies that were doing SEM for them as well as being an affiliate for instance. At Hilton he didn't allow affiliates to do paid search, as there was a lot of competition from their own franchises.</p><p>At Napster though they are encouraging their affiliate to use search, and even to use their brand. They were using their own budget to fill in the gaps were their affiliates weren't doing anything, making their campaign look incredibly big. Napster doesn't exclude affiliats from using it's own brand in PPC and SEO either, making sure all the results on brand terms are either affiliate or Napster itself, which isn't working the way I see it (<a
href="http://www.google.com/search?q=napster&amp;hl=en&amp;gl=us">see for yourself</a>).</p><p>He says they even go as far as sharing keyword lists with affiliates, and give them artwork. To be honest a lot of the issues he's talking about seem quite simple to solve from a technological standpoint.</p><p>I was looking at some of their affiliates and caught one javascript cloaking and copying their frontpage, and Jeff said they would probably ask them to remove it and "come back to the light side of the force". Someone else asked how important affiliate is for their program, an, without revealing any numbers, he said it was very important for their sales.</p><p>Another interesting question was whether they'd allow affiliates to advertise offline, and he said they probably wouldnd't, but that they couldn't make it work.</p><p><a
href="http://yoast.com/kevin-ryan-jeff-ferguson-of-napster/">Kevin Ryan &#038; Jeff Ferguson of Napster</a> is a post by <a
rel="author" href="http://yoast.com/author/joost/">Joost de Valk</a> on <a
href="http://yoast.com">Yoast - Tweaking Websites</a>.A good WordPress blog needs good hosting, you don't want your blog to be slow, or, even worse, down, do you? Check out my thoughts on <a
href="http://yoast.com/wordpress-hosting/">WordPress hosting</a>!</p>]]></content:encoded> <wfw:commentRss>http://yoast.com/kevin-ryan-jeff-ferguson-of-napster/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Combining SEM and Affiliate Marketing</title><link>http://yoast.com/combining-sem-and-affiliate-marketing/#utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=combining-sem-and-affiliate-marketing</link> <comments>http://yoast.com/combining-sem-and-affiliate-marketing/#comments</comments> <pubDate>Thu, 25 Oct 2007 12:56:03 +0000</pubDate> <dc:creator>Joost de Valk</dc:creator> <category><![CDATA[Usability & Conversion]]></category> <category><![CDATA[Affiliate Marketing]]></category> <category><![CDATA[Conferences]]></category> <category><![CDATA[SEM]]></category><guid
isPermaLink="false">http://www.joostdevalk.nl/combining-sem-and-affiliate-marketing/</guid> <description><![CDATA[<p>After a nice session from 11.30 till 12.30 with Kris Jones, who talked about the integration of Search Marketing and Affiliate Marketing (in short: loads of money to be made), I'm now in the "Meet the super affiliates" session. I must say that there are a few people here who really know their stuff, but [...]</p><p><a
href="http://yoast.com/combining-sem-and-affiliate-marketing/">Combining SEM and Affiliate Marketing</a> is a post by <a
rel="author" href="http://yoast.com/author/joost/">Joost de Valk</a> on <a
href="http://yoast.com">Yoast - Tweaking Websites</a>.A good WordPress blog needs good hosting, you don't want your blog to be slow, or, even worse, down, do you? Check out my thoughts on <a
href="http://yoast.com/wordpress-hosting/">WordPress hosting</a>!</p>]]></description> <content:encoded><![CDATA[<p>After a nice session from 11.30 till 12.30 with Kris Jones, who talked about the integration of Search Marketing and Affiliate Marketing (in short: loads of money to be made), I'm now in the "Meet the super affiliates" session. I must say that there are a few people here who really know their stuff, but it amazes me that there are so many too who don't seem to get search <em>at all</em> yet...</p><p>Basically, if you're an experienced SEO or SEM, you can make loads and loads of money by combining your knowledge with affiliate sites. There's a big growth as well for companies doing full service online marketing, including affiliate management, like <a
href="http://www.pepperjamsearch.com/">Kris Jones's PepperJam</a> does...</p><p>Onetomarket doesn't do affiliate management yet, but it's something I'm going to be advocating, as that would allow for a good integration of search and affiliate, which is in the best interest of our clients.</p><p><a
href="http://yoast.com/combining-sem-and-affiliate-marketing/">Combining SEM and Affiliate Marketing</a> is a post by <a
rel="author" href="http://yoast.com/author/joost/">Joost de Valk</a> on <a
href="http://yoast.com">Yoast - Tweaking Websites</a>.A good WordPress blog needs good hosting, you don't want your blog to be slow, or, even worse, down, do you? Check out my thoughts on <a
href="http://yoast.com/wordpress-hosting/">WordPress hosting</a>!</p>]]></content:encoded> <wfw:commentRss>http://yoast.com/combining-sem-and-affiliate-marketing/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Affiliate links? Cloak them!</title><link>http://yoast.com/affiliate-links-cloak-them/#utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=affiliate-links-cloak-them</link> <comments>http://yoast.com/affiliate-links-cloak-them/#comments</comments> <pubDate>Mon, 30 Apr 2007 15:17:24 +0000</pubDate> <dc:creator>Joost de Valk</dc:creator> <category><![CDATA[SEO]]></category> <category><![CDATA[Affiliate Marketing]]></category><guid
isPermaLink="false">http://www.joostdevalk.nl/blog/affiliate-links-cloak-them/</guid> <description><![CDATA[<p>John Chow did a post on how to hide your affiliate links... Of course the only proper way to hide affiliate links is: cloaking them. I'm thinking about building a WordPress plugin for that specific purpose. Anyone know of a proper affiliate link cloaking script?</p><p><a
href="http://yoast.com/affiliate-links-cloak-them/">Affiliate links? Cloak them!</a> is a post by <a
rel="author" href="http://yoast.com/author/joost/">Joost de Valk</a> on <a
href="http://yoast.com">Yoast - Tweaking Websites</a>.A good WordPress blog needs good hosting, you don't want your blog to be slow, or, even worse, down, do you? Check out my thoughts on <a
href="http://yoast.com/wordpress-hosting/">WordPress hosting</a>!</p>]]></description> <content:encoded><![CDATA[<p>John Chow did a post on how to <a
href="http://www.johnchow.com/how-to-hide-affiliate-links/">hide your affiliate links</a>... Of course the only proper way to hide affiliate links is: cloaking them. I'm thinking about building a WordPress plugin for that specific purpose. Anyone know of a proper affiliate link cloaking script?</p><p><a
href="http://yoast.com/affiliate-links-cloak-them/">Affiliate links? Cloak them!</a> is a post by <a
rel="author" href="http://yoast.com/author/joost/">Joost de Valk</a> on <a
href="http://yoast.com">Yoast - Tweaking Websites</a>.A good WordPress blog needs good hosting, you don't want your blog to be slow, or, even worse, down, do you? Check out my thoughts on <a
href="http://yoast.com/wordpress-hosting/">WordPress hosting</a>!</p>]]></content:encoded> <wfw:commentRss>http://yoast.com/affiliate-links-cloak-them/feed/</wfw:commentRss> <slash:comments>13</slash:comments> </item> <item><title>AdSense affiliate marketing</title><link>http://yoast.com/adsense-affiliate-marketing/#utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=adsense-affiliate-marketing</link> <comments>http://yoast.com/adsense-affiliate-marketing/#comments</comments> <pubDate>Thu, 21 Dec 2006 20:10:13 +0000</pubDate> <dc:creator>Joost de Valk</dc:creator> <category><![CDATA[SEO]]></category> <category><![CDATA[Affiliate Marketing]]></category><guid
isPermaLink="false">http://www.joostdevalk.nl/blog/adsense-affiliate-marketing/</guid> <description><![CDATA[<p>I guess we all expected it to be coming one day or the other, CPA AdSense, CPA meaning Cost per Action. SeekingAlpha reports they were invited to test this. When you look at it, this is affiliate marketing... I found this rather intriguing: How can I promote the CPA ad unit? Since this is a [...]</p><p><a
href="http://yoast.com/adsense-affiliate-marketing/">AdSense affiliate marketing</a> is a post by <a
rel="author" href="http://yoast.com/author/joost/">Joost de Valk</a> on <a
href="http://yoast.com">Yoast - Tweaking Websites</a>.A good WordPress blog needs good hosting, you don't want your blog to be slow, or, even worse, down, do you? Check out my thoughts on <a
href="http://yoast.com/wordpress-hosting/">WordPress hosting</a>!</p>]]></description> <content:encoded><![CDATA[<p>I guess we all expected it to be coming one day or the other, CPA AdSense, CPA meaning Cost per Action. <a
href="http://internet.seekingalpha.com/article/12363">SeekingAlpha</a> reports they were invited to test this. When you look at it, this <em>is</em> affiliate marketing...</p><p><span
id="more-125"></span></p><p>I found this rather intriguing:</p><p><em><strong>How can I promote the CPA ad unit?</strong><br
/> Since this is a test and these CPA ads are not regular ad units, we are giving you more flexibility in saying things like "I recommend this product" or "Try JetBlue today" next to the CPA ad unit. However, you should still not incite someone to click on the ad, so saying "Click Here" is not ok.</em></p><p>SeekingAlpha suggests that, if this goes live, this might kill a few of the affiliate companies out there, such as ClickValue. The biggest opportunity I see, is that Google wil automatically try to put the best converting ads for your site on there, so you won't have to go through lots of affiliate marketing deals yourself...</p><p><a
href="http://yoast.com/adsense-affiliate-marketing/">AdSense affiliate marketing</a> is a post by <a
rel="author" href="http://yoast.com/author/joost/">Joost de Valk</a> on <a
href="http://yoast.com">Yoast - Tweaking Websites</a>.A good WordPress blog needs good hosting, you don't want your blog to be slow, or, even worse, down, do you? Check out my thoughts on <a
href="http://yoast.com/wordpress-hosting/">WordPress hosting</a>!</p>]]></content:encoded> <wfw:commentRss>http://yoast.com/adsense-affiliate-marketing/feed/</wfw:commentRss> <slash:comments>2</slash:comments> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using apc
Page Caching using apc
Database Caching 7/28 queries in 0.006 seconds using apc
Object Caching 2019/2056 objects using apc
Content Delivery Network via cdn.yoast.com

Served from: yoast.com @ 2012-05-23 09:46:08 -->
