<?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>DazzlinDonna &#187; Conversions</title>
	<atom:link href="http://www.dazzlindonna.com/blog/tag/conversions/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dazzlindonna.com/blog</link>
	<description>Making A Living Online</description>
	<lastBuildDate>Fri, 10 Feb 2012 14:46:45 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>How to Install Google Website Optimizer on WordPress for Affiliate Offers</title>
		<link>http://www.dazzlindonna.com/blog/making-money-online/business-development/conversions/how-to-install-google-website-optimizer-on-wordpress-for-affiliate-offers/</link>
		<comments>http://www.dazzlindonna.com/blog/making-money-online/business-development/conversions/how-to-install-google-website-optimizer-on-wordpress-for-affiliate-offers/#comments</comments>
		<pubDate>Mon, 05 Apr 2010 12:53:47 +0000</pubDate>
		<dc:creator>Donna</dc:creator>
				<category><![CDATA[Conversions]]></category>
		<category><![CDATA[Guest Post]]></category>
		<category><![CDATA[Google Website Optimizer]]></category>
		<category><![CDATA[Jason Capshaw]]></category>

		<guid isPermaLink="false">http://www.dazzlindonna.com/blog/?p=1850</guid>
		<description><![CDATA[The following is a guest post by Jason Capshaw It is much easier to double your conversion rate, than it is to double your traffic. One of the key components of conversion rate optimization is testing. Google Website Optimizer was built for that very reason and is designed to give you the ability to test [...]]]></description>
			<content:encoded><![CDATA[<p><i>The following is a guest post by Jason Capshaw</i></p>
<p>It is much easier to double your conversion rate, than it is to double your traffic. One of the key components of conversion rate optimization is testing.</p>
<p>Google Website Optimizer was built for that very reason and is designed to give you the ability to test different ideas against each other in real time and see what works and what doesn&#8217;t.</p>
<p>Unfortunately, it does not seemlessly work with WordPress. In a typical setup, Optimizer would track visitors all the way to a confirmation page. Since most affiliate offerings require you to link outside of your site, you have no way of monitoring which pages perform the best. This tutorial is designed to show you how to track link clicks within your affiliate pages without requiring a confirmation page.</p>
<h3>Step One</h3>
<p><b>Setup your <a href="https://www.google.com/accounts/ServiceLogin?service=websiteoptimizer&#038;continue=http://www.google.com/analytics/siteopt/%3Fet%3Dreset%26hl%3Den-US&#038;hl=en-US" class="liexternal">Google Website Optimization</a> account.</b></p>
<p>Go to Google Optimizer and login. Click on &#8220;Create a new experiment&#8221;.</p>
<h3>Step Two</h3>
<p><b>Choose the multivariate experiment type.</b></p>
<p><img src="http://www.dazzlindonna.com/blog/wp-content/uploads/2010/03/experiment-type.jpg" alt="" title="experiment-type" width="575" height="302" class="aligncenter size-full wp-image-1851" /></p>
<h3>Step Three</h3>
<p><b>Check the &#8220;I&#8217;ve completed the steps above and I&#8217;m ready to start setting up my experiment&#8221; box and click &#8220;create&#8221;.</b></p>
<h3>Step Four</h3>
<p><b>Fill out the experiment details.</b></p>
<p>In this section you will name the experiment and specify the page to be tested. Put the test page as the confirmation page as well because we will be monitoring clicks on this page.</p>
<p><img src="http://www.dazzlindonna.com/blog/wp-content/uploads/2010/03/experiment-details.jpg" alt="" title="experiment-details" width="575" height="614" class="aligncenter size-full wp-image-1852" /></p>
<h3>Step Five</h3>
<p><b>Check the &#8220;You will install and validate javascript tags&#8221; and click continue.</b></p>
<h3>Step Six</h3>
<p><b>Install this <a href="http://wordpress.org/extend/plugins/google-website-optimizer-for-wordpress/" class="liwp">WordPress Plugin</a> and navigate to the page you want to test in the WordPress Admin Section.</b></p>
<p>You will see this below your WordPress text editor:</p>
<p><img src="http://www.dazzlindonna.com/blog/wp-content/uploads/2010/03/plugin.jpg" alt="" title="plugin" width="575" height="408" class="aligncenter size-full wp-image-1853" /></p>
<h3>Step Seven</h3>
<p><b>Install the control and tracking scripts inside each section.</b></p>
<p>Google provides you with several different scripts that must be placed within the test page for the experiment to work. The plugin has color matching boxes for the scripts which make it easy to match. </p>
<p>Place the control script in the control box and the tracking script in the tracking box.</p>
<h3>Step Eight</h3>
<p><b>Edit and install the conversion script.</b></p>
<p><img src="http://www.dazzlindonna.com/blog/wp-content/uploads/2010/03/conversion-script.jpg" alt="" title="conversion-script" width="575" height="208" class="aligncenter size-full wp-image-1854" /></p>
<p>The conversion script is designed to detect someone entering the confirmation page from one of the experiment variations. We have to edit the code to track link clicks.</p>
<p>This is how the code will look:</p>
<pre>
<code>&lt;script type="text/javascript"&gt;
if(typeof(_gat)!='object')document.write('&lt;sc'+'ript src="http'+
(document.location.protocol=='https:'?'s://ssl':'://www')+
'.google-analytics.com/ga.js"&gt;&lt;/sc'+'ript&gt;')&lt;/script&gt;
&lt;script type="text/javascript"&gt;
var gwoTracker=_gat._getTracker("UA-XXXXXXX-X");
gwoTracker._trackPageview("/YYYYYYYYYY/goal");
&lt;/script&gt;</code>
</pre>
<p>This is the edited code that you will use to track the link clicks:</p>
<pre>
<code>&lt;script type="text/javascript"&gt;

if(typeof(_gat)!='object')document.write('&lt;sc'+'ript src="http'+
(document.location.protocol=='https:'?'s://ssl':'://www')+
'.google-analytics.com/ga.js"&gt;&lt;/sc'+'ript&gt;')&lt;/script&gt;

&lt;script type="text/javascript"&gt;
function doGoal(that) {
try {
var gwoTracker=_gat._getTracker("UA-XXXXXXX-X");
gwoTracker._trackPageview("/YYYYYYYYYY/goal");
setTimeout('document.location = "' + that.href + '"', 100)
}catch(err){}
}
&lt;/script&gt;</code>
</pre>
<p>Make sure that you replace the &#8220;UA-XXXXXXX-X&#8221; and /YYYYYYYYYYY/goal with the numbers that are in your original script.</p>
<p>For more information on this, visit Google&#8217;s <a href="http://www.google.com/support/websiteoptimizer/bin/answer.py?hl=en&#038;answer=93181" class="liexternal">help page</a>.</p>
<h3>Step Nine</h3>
<p><b>Add conversion code to links.</b></p>
<p>In order to monitor specific links, we must add a snippet of javascript to each link we want to track. </p>
<p>This is a normal link:</p>
<p><code>&lt;a href="http://www.example.com/promotion"&gt;Featured Products&lt;/a&gt;</code></p>
<p>This is the link with the tracking installed:</p>
<p><code>&lt;a href="http://www.example.com/promotion" onclick='doGoal(this);return false;'&gt;Featured Products&lt;/a&gt;</code></p>
<h3>Step Ten</h3>
<p><b>Set up the content test section.</b></p>
<p>Google provides two pieces of code that you put above and below each section that you want to test. In this manner, Google automatically replaces and switches between different content to test variations.</p>
<p><img src="http://www.dazzlindonna.com/blog/wp-content/uploads/2010/03/experiment-content-section.jpg" alt="" title="experiment-content-section" width="575" height="291" class="aligncenter size-full wp-image-1855" /></p>
<p>You can wrap the whole post with it or just specific sections of the content. I like to wrap the first paragraph, the body section and the call to action section.</p>
<p><img src="http://www.dazzlindonna.com/blog/wp-content/uploads/2010/03/experiment-content-call.jpg" alt="" title="experiment-content-call" width="495" height="287" class="aligncenter size-full wp-image-1856" /></p>
<h3>Step Eleven</h3>
<p><b>Install the headline and CSS page sections.</b></p>
<p>The headline of your blog post is probably the most important feature that needs to be tested. In order to test the headline you will need to make some light changes to the theme files.</p>
<p>Open up your single.php (for blog posts) or page.php (for pages) and header.php inside of the theme editing section of WordPress.  Add the page sections to the headline and the CSS call.</p>
<p><b>CSS:</b></p>
<p><img src="http://www.dazzlindonna.com/blog/wp-content/uploads/2010/03/header.php_.jpg" alt="" title="header.php" width="494" height="338" class="aligncenter size-full wp-image-1857" /></p>
<p><b>Headline:</b></p>
<p><img src="http://www.dazzlindonna.com/blog/wp-content/uploads/2010/03/headline.jpg" alt="" title="headline" width="569" height="315" class="aligncenter size-full wp-image-1858" /></p>
<p>Click the validate button and make sure there are no errors before continuing. It will let you know how many page sections you have available to edit. </p>
<p>More than likely you will get the following error:</p>
<p><img src="http://www.dazzlindonna.com/blog/wp-content/uploads/2010/03/control-script.jpg" alt="" title="control-script" width="575" height="329" class="aligncenter size-full wp-image-1859" /></p>
<p>This is due to the fact that the control script is not directly underneath the first head tag. Go into your header.php and move it (if it exists) or create it.</p>
<p><img src="http://www.dazzlindonna.com/blog/wp-content/uploads/2010/03/wp-head.jpg" alt="" title="wp-head" width="563" height="285" class="aligncenter size-full wp-image-1860" /></p>
<h3>Step Twelve</h3>
<p><b>Finally, create your variations.</b></p>
<p>Once everything is validated and you can now start creating page variations. Simply click add variation under each page section you want to test. </p>
<p><img src="http://www.dazzlindonna.com/blog/wp-content/uploads/2010/03/add-variation.jpg" alt="" title="add-variation" width="575" height="315" class="aligncenter size-full wp-image-1861" /></p>
<p>Happy testing!</p>
<hr />
<p><i>Jason Capshaw is founder of MyWebTronics, an <a href="http://www.mywebtronics.com" class="liexternal">Atlanta web design firm</a>.</i></p>
<hr />
<p><small>© Donna for <a href="http://www.dazzlindonna.com/blog">DazzlinDonna</a>, 2010. |
<a href="http://www.dazzlindonna.com/blog/making-money-online/business-development/conversions/how-to-install-google-website-optimizer-on-wordpress-for-affiliate-offers/">Permalink</a> |
<a href="http://www.dazzlindonna.com/blog/making-money-online/business-development/conversions/how-to-install-google-website-optimizer-on-wordpress-for-affiliate-offers/#comments">36 comments</a> |
Add to
<a href="http://del.icio.us/post?url=http://www.dazzlindonna.com/blog/making-money-online/business-development/conversions/how-to-install-google-website-optimizer-on-wordpress-for-affiliate-offers/&title=How to Install Google Website Optimizer on WordPress for Affiliate Offers">del.icio.us</a>
<br/>
Post tags: <a href="http://www.dazzlindonna.com/blog/tag/conversions/" rel="tag">Conversions</a>, <a href="http://www.dazzlindonna.com/blog/tag/google-website-optimizer/" rel="tag">Google Website Optimizer</a>, <a href="http://www.dazzlindonna.com/blog/tag/jason-capshaw/" rel="tag">Jason Capshaw</a><br/>
This feed is for personal non-commercial use only. If you are not reading this in your news aggregator/reader or on <a href="http://www.dazzlindonna.com/blog">DazzlinDonna</a>, then the site you are looking at is probably infringing upon my copyright.<br/>
</small></p>]]></content:encoded>
			<wfw:commentRss>http://www.dazzlindonna.com/blog/making-money-online/business-development/conversions/how-to-install-google-website-optimizer-on-wordpress-for-affiliate-offers/feed/</wfw:commentRss>
		<slash:comments>36</slash:comments>
		</item>
		<item>
		<title>eBusiness Tips: Convert, Convert, Convert</title>
		<link>http://www.dazzlindonna.com/blog/making-money-online/business-development/conversions/ebusiness-tips-convert-convert-convert/</link>
		<comments>http://www.dazzlindonna.com/blog/making-money-online/business-development/conversions/ebusiness-tips-convert-convert-convert/#comments</comments>
		<pubDate>Wed, 10 Mar 2010 13:33:09 +0000</pubDate>
		<dc:creator>Donna</dc:creator>
				<category><![CDATA[Conversions]]></category>
		<category><![CDATA[affiliate products]]></category>
		<category><![CDATA[Chris Goward]]></category>
		<category><![CDATA[Marketing]]></category>

		<guid isPermaLink="false">http://www.dazzlindonna.com/blog/?p=1727</guid>
		<description><![CDATA[In case the title didn&#8217;t give it away, these wise words from &#8217;round the web all center around conversions. It&#8217;s great to get more traffic to your site, but don&#8217;t forget about the traffic once it gets there. At that point, it&#8217;s all about conversions. Don&#8217;t sell a product? You still need to convert something, [...]]]></description>
			<content:encoded><![CDATA[<p>In case the title didn&#8217;t give it away, these wise words from &#8217;round the web all center around conversions. It&#8217;s great to get more traffic to your site, but don&#8217;t forget about the traffic once it gets there. At that point, it&#8217;s all about conversions. Don&#8217;t sell a product? You still need to convert something, somewhere, somehow. What do you want your visitors to do? Sign up for a newsletter? Subscribe to a feed? Comment on your blog posts? No matter what goals you have, they all rely on conversions.</p>
<p><a href="http://www.widerfunnel.com/conversion-rate-optimization/31-conversion-optimization-tips-and-counting" class="liexternal">31 Conversion Optimization Tips &#8211; and Counting</a></p>
<p><i>How can you reduce Distraction on your pages? How many links can you eliminate? &#8230; You don&#8217;t sell features. You sell solutions to problems.</i></p>
<p>>>&nbsp;<b>Follow</b> <a href="http://twitter.com/chrisgoward" class="liexternal">Chris Goward</a></p>
<hr />
<p><a href="http://www.ioninteractive.com/post-click-marketing-blog/2010/2/2/copy-that-converts-interview-with-copywriting-maven-roberta.html" class="liexternal">Copy that Converts: Interview with Copywriting Maven Roberta Rosenberg</a></p>
<p><i>You need the words to make the sale, period. Whether we&#8217;re looking at text-only email, a simple direct mail letter or even skywriting for that matter, the words are the key to the message. However, as I mentioned in a previous response, good design supports the message and makes it easy, even pleasant to read. It also helps direct the reader from point to point, acting as a visual roadmap to the essential bits and pieces that deserve particular attention. However, what&#8217;s even more important than the creative &#8211; copy or design &#8211; is a strong, attractive offer and visitors who are hungry for what you have to promote.</i></p>
<p>>>&nbsp;<b>Follow</b> <a href="http://twitter.com/CopyWriterMaven" class="liexternal">Roberta Rosenberg</a></p>
<hr />
<br />
<hr />
<p><small>© Donna for <a href="http://www.dazzlindonna.com/blog">DazzlinDonna</a>, 2010. |
<a href="http://www.dazzlindonna.com/blog/making-money-online/business-development/conversions/ebusiness-tips-convert-convert-convert/">Permalink</a> |
<a href="http://www.dazzlindonna.com/blog/making-money-online/business-development/conversions/ebusiness-tips-convert-convert-convert/#comments">One comment</a> |
Add to
<a href="http://del.icio.us/post?url=http://www.dazzlindonna.com/blog/making-money-online/business-development/conversions/ebusiness-tips-convert-convert-convert/&title=eBusiness Tips: Convert, Convert, Convert">del.icio.us</a>
<br/>
Post tags: <a href="http://www.dazzlindonna.com/blog/tag/affiliate-products/" rel="tag">affiliate products</a>, <a href="http://www.dazzlindonna.com/blog/tag/chris-goward/" rel="tag">Chris Goward</a>, <a href="http://www.dazzlindonna.com/blog/tag/conversions/" rel="tag">Conversions</a>, <a href="http://www.dazzlindonna.com/blog/tag/marketing/" rel="tag">Marketing</a><br/>
This feed is for personal non-commercial use only. If you are not reading this in your news aggregator/reader or on <a href="http://www.dazzlindonna.com/blog">DazzlinDonna</a>, then the site you are looking at is probably infringing upon my copyright.<br/>
</small></p>]]></content:encoded>
			<wfw:commentRss>http://www.dazzlindonna.com/blog/making-money-online/business-development/conversions/ebusiness-tips-convert-convert-convert/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>eBusiness Tips: What You Envision</title>
		<link>http://www.dazzlindonna.com/blog/making-money-online/site-ideas/content/ebusiness-tips-what-you-envision/</link>
		<comments>http://www.dazzlindonna.com/blog/making-money-online/site-ideas/content/ebusiness-tips-what-you-envision/#comments</comments>
		<pubDate>Wed, 03 Mar 2010 10:21:42 +0000</pubDate>
		<dc:creator>Donna</dc:creator>
				<category><![CDATA[Content]]></category>
		<category><![CDATA[Conversions]]></category>
		<category><![CDATA[site content]]></category>
		<category><![CDATA[vision]]></category>

		<guid isPermaLink="false">http://www.dazzlindonna.com/blog/?p=1723</guid>
		<description><![CDATA[Much of what happens on your site is directly related to what you envisioned when you created the content on each page. It first happened within your mind, got translated into some form of content on your site, and the result of that gets broadcast to every visitor that stops by. Did your original vision [...]]]></description>
			<content:encoded><![CDATA[<p>Much of what happens on your site is directly related to what you envisioned when you created the content on each page. It first happened within your mind, got translated into some form of content on your site, and the result of that gets broadcast to every visitor that stops by. Did your original vision match the final result? Consider the following wise words from &#8217;round the web while you think about that. Then take another look at the site you&#8217;ve created. </p>
<h3>Does your vision for your site&#8217;s content match the reality on the page?</h3>
<p><a href="http://www.conversion-rate-experts.com/conversion-killing-mistakes/" class="liexternal">“Conversion-killing” mistakes</a></p>
<p><i>In the movie Monsters vs Aliens, the President has two big red buttons &#8230; The one on the left launches every nuclear weapon in the country; the one on the right makes a latte. The President asks, &#8220;Who designed this ridiculous system?&#8221; His colleagues reply, &#8220;You did.&#8221;</i></p>
<p>&gt;&gt;&nbsp;<b>Follow</b> them (Sorry, they don&#8217;t have a Twitter account. I&#8217;ve encouraged them to do so, but for now, I can&#8217;t fill this in for you).</p>
<hr />
<p><a href="http://www.writewaysolutions.com/blog/569/an-infomercial-selling-secret-you-must-use-in-your-marketing-materials/" class="liexternal">An Infomercial Selling Secret You Must Use in Your Marketing Materials</a></p>
<p><i>One of the most persuasive terms you can use in copywriting is &#8220;imagine.&#8221; Readers automatically visualize whatever words you place after this almost magical command statement.</i></p>
<p>&gt;&gt;&nbsp;<b>Follow</b> <a href="http://twitter.com/tomtrush" class="liexternal">Tom Trush</a></p>
<hr />
<p><i><br /></i></p>
<hr />
<p><small>© Donna for <a href="http://www.dazzlindonna.com/blog">DazzlinDonna</a>, 2010. |
<a href="http://www.dazzlindonna.com/blog/making-money-online/site-ideas/content/ebusiness-tips-what-you-envision/">Permalink</a> |
<a href="http://www.dazzlindonna.com/blog/making-money-online/site-ideas/content/ebusiness-tips-what-you-envision/#comments">No comment</a> |
Add to
<a href="http://del.icio.us/post?url=http://www.dazzlindonna.com/blog/making-money-online/site-ideas/content/ebusiness-tips-what-you-envision/&title=eBusiness Tips: What You Envision">del.icio.us</a>
<br/>
Post tags: <a href="http://www.dazzlindonna.com/blog/tag/conversions/" rel="tag">Conversions</a>, <a href="http://www.dazzlindonna.com/blog/tag/site-content/" rel="tag">site content</a>, <a href="http://www.dazzlindonna.com/blog/tag/vision/" rel="tag">vision</a><br/>
This feed is for personal non-commercial use only. If you are not reading this in your news aggregator/reader or on <a href="http://www.dazzlindonna.com/blog">DazzlinDonna</a>, then the site you are looking at is probably infringing upon my copyright.<br/>
</small></p>]]></content:encoded>
			<wfw:commentRss>http://www.dazzlindonna.com/blog/making-money-online/site-ideas/content/ebusiness-tips-what-you-envision/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My New Product: Q&amp;A Affiliate Formula</title>
		<link>http://www.dazzlindonna.com/blog/making-money-online/affiliate-sales-making-money-online/my-new-product-qa-affiliate-formula/</link>
		<comments>http://www.dazzlindonna.com/blog/making-money-online/affiliate-sales-making-money-online/my-new-product-qa-affiliate-formula/#comments</comments>
		<pubDate>Tue, 26 Jan 2010 10:24:45 +0000</pubDate>
		<dc:creator>Donna</dc:creator>
				<category><![CDATA[Affiliate Sales]]></category>
		<category><![CDATA[Affiliate marketing]]></category>
		<category><![CDATA[affiliate products]]></category>
		<category><![CDATA[Conversions]]></category>

		<guid isPermaLink="false">http://www.dazzlindonna.com/blog/?p=1594</guid>
		<description><![CDATA[UPDATE: This product has been retired. As you are aware, I make my living online. A large portion of that income comes from sites I own which promote affiliate products that I believe are of value. Over the years, I&#8217;ve seen what works and what doesn&#8217;t when promoting affiliate products. In addition, I&#8217;ve paid attention [...]]]></description>
			<content:encoded><![CDATA[<p>UPDATE: This product has been retired.</p>
<p>As you are aware, I make my living online. A large portion of that income comes from sites I own which promote affiliate products that I believe are of value. Over the years, I&#8217;ve seen what works and what doesn&#8217;t when promoting affiliate products. In addition, I&#8217;ve paid attention when successful affiliate marketers (and non-affiliate marketers) shared their secrets.  On top of that, I&#8217;ve been coaching clients for the last couple of years, helping them bring their ideas to life on the web. My learning, my experience, and my teaching led me to realize that there was something missing from the product lineups I&#8217;ve come across.  I decided to fill that gap.</p>
<p><del><a href="http://www.dazzlindonna.com/blog/wp-content/uploads/2010/01/mybox.png" class="liimagelink"><img src="http://www.dazzlindonna.com/blog/wp-content/uploads/2010/01/mybox-150x150.png" alt="" title="q and a affiliate formula" width="150" height="150" class="alignleft size-thumbnail wp-image-1597" /></a>I&#8217;ve put together the Q&amp;A Affiliate Formula. The product consists of not just an ebook that describes the formula, but also a valid XHTML/CSS static website template (and a WordPress theme as well).  This way, you aren&#8217;t merely reading a formula, but have a template to use that makes it extremely easy to follow.  Speaking of easy&#8230;some people might look at it and say, &#8220;Wow, this is simple. Maybe too simple to pay for?&#8221; But of course, I disagree. <img src='http://www.dazzlindonna.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />   I believe the hard work I put into making it so simple is a large part of it&#8217;s actual value. And since I&#8217;m not charging a lot for it (just $27), I don&#8217;t feel bad about making it a paid product at all.</del></p>
<p><del>The gist of this product is a formula designed to increase conversion rates for people who are promoting affiliate products within their niche, combined with a template designed to use that formula. If you aren&#8217;t satisfied with the size of your monthly affiliate checks, the Q&amp;A Affiliate Formula was created for you.</del></p>
<p><del>If you want to get more details, just head on over to the Q&amp;A Affiliate Formula site. You can also become an affiliate of the Q&amp;A Affiliate Formula from there as well.</del></p>
<hr />
<p><small>© Donna for <a href="http://www.dazzlindonna.com/blog">DazzlinDonna</a>, 2010. |
<a href="http://www.dazzlindonna.com/blog/making-money-online/affiliate-sales-making-money-online/my-new-product-qa-affiliate-formula/">Permalink</a> |
<a href="http://www.dazzlindonna.com/blog/making-money-online/affiliate-sales-making-money-online/my-new-product-qa-affiliate-formula/#comments">10 comments</a> |
Add to
<a href="http://del.icio.us/post?url=http://www.dazzlindonna.com/blog/making-money-online/affiliate-sales-making-money-online/my-new-product-qa-affiliate-formula/&title=My New Product: Q&amp;A Affiliate Formula">del.icio.us</a>
<br/>
Post tags: <a href="http://www.dazzlindonna.com/blog/tag/affiliate-marketing/" rel="tag">Affiliate marketing</a>, <a href="http://www.dazzlindonna.com/blog/tag/affiliate-products/" rel="tag">affiliate products</a>, <a href="http://www.dazzlindonna.com/blog/tag/conversions/" rel="tag">Conversions</a><br/>
This feed is for personal non-commercial use only. If you are not reading this in your news aggregator/reader or on <a href="http://www.dazzlindonna.com/blog">DazzlinDonna</a>, then the site you are looking at is probably infringing upon my copyright.<br/>
</small></p>]]></content:encoded>
			<wfw:commentRss>http://www.dazzlindonna.com/blog/making-money-online/affiliate-sales-making-money-online/my-new-product-qa-affiliate-formula/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Conversion Secrets for Free Downloads to Paid Customers</title>
		<link>http://www.dazzlindonna.com/blog/making-money-online/business-development/conversions/conversion-secrets-for-free-downloads-to-paid-customers/</link>
		<comments>http://www.dazzlindonna.com/blog/making-money-online/business-development/conversions/conversion-secrets-for-free-downloads-to-paid-customers/#comments</comments>
		<pubDate>Tue, 13 Nov 2007 13:38:34 +0000</pubDate>
		<dc:creator>Donna</dc:creator>
				<category><![CDATA[Conversions]]></category>
		<category><![CDATA[autoresponder]]></category>
		<category><![CDATA[Aweber]]></category>
		<category><![CDATA[AWeber Communications Inc.]]></category>
		<category><![CDATA[Director of Client Relations & Development]]></category>
		<category><![CDATA[e-zine]]></category>
		<category><![CDATA[eye site]]></category>
		<category><![CDATA[free trials]]></category>
		<category><![CDATA[Newtown]]></category>
		<category><![CDATA[opt-in lists]]></category>
		<category><![CDATA[Sean Cohen]]></category>
		<category><![CDATA[subscriptions]]></category>
		<category><![CDATA[trial software]]></category>
		<category><![CDATA[web site visitors]]></category>

		<guid isPermaLink="false">http://www.dazzlindonna.com/blog/2007/11/13/conversion-secrets-for-free-downloads-to-paid-customers/</guid>
		<description><![CDATA[By Sean Cohen Do you give web site visitors the opportunity to download a free trial of your product or service with the intention that they will come back and purchase? How are you following up with these visitors? Asking them to fill out a form and immediately giving them the download on the next [...]]]></description>
			<content:encoded><![CDATA[<p><em>By Sean Cohen</em></p>
<p>Do you give web site visitors the opportunity to download a free trial of your product or service with the intention that they will come back and purchase? How are you following up with these visitors? Asking them to fill out a form and immediately giving them the download on the next page is not the best way to generate a quality opt-in list. Collecting accurate opt-in information from these visitors is essential to follow up education and making the sale.</p>
<p>Download giveaway opt-in conversion is extremely simple when done with the correct process. Unfortunately many businesses are leaving significant profits and subscribers on the table by using the wrong methods.</p>
<p><b>Wrong Way:</b></p>
<p>A visitor comes to your site and they fill out a form to request your free download. Upon submission of the form they are taken to your thank you page where you provide the link to download.</p>
<p>This person has been given your download but you have not given them a reason to subscribe to your list. They might have given you a fake email address and in all likelihood did give you a fake email knowing that they just need to get to the next page to receive your information. Since you can&#8217;t follow up with them you might have lost a sale.</p>
<p><b>Correct Way:</b></p>
<p>Insert the AWeber opt-in form on your site. Within eye site of this form provide information about the importance of subscribing to your list. Add value to your list by giving them compelling reasons to subscribe. Make it clear that the download link will be provided in the email they receive after confirming their subscription.</p>
<p>On your thank you page (or redirect page) they are taken to after they fill out the form you need to provide information on verifying. Verified opt-in allows you to ensure that the person subscribing did so with his or her own email address and didn&#8217;t provide a fake or malicious email. Let the visitor know that they should check their email inbox. Tell them what the subject line of the email says so they know what to look for. Convey that they must click on the link inside to verify and receive the download link to your product.</p>
<p>In the autoresponder they receive after verifying, give them the download link. Since they are subscribed to your list and have confirmed that the address they provided is valid you can effectively follow up providing more information about using the free or trial software, training tips, and further benefits or features earned by becoming a customer.</p>
<p>Using these techniques you are sure to increase your sales when converting free downloads to paid customers.</p>
<p><HR></p>
<p>Sean Cohen, Director of Client Relations &#038; Development of Newtown, PA based AWeber Communications, Inc. an opt-in email service provider. With 7 years managing <a href="http://www.aweber.com/?287031" class="liexternal">opt-in autoresponders, automated follow up and newsletters for small businesses</a>.</p>
<p>Learn more about <a href="http://www.aweber.com/?287031" class="liexternal">effective email follow up</a>.</p>
<p><a href="http://www.aweber.com/?287031" class="liexternal">Looking for FREE, high-quality web site or e-zine content?</a> </p>
<p><HR></p>
<p> <img src='http://www.dazzlindonna.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<hr />
<p><small>© Donna for <a href="http://www.dazzlindonna.com/blog">DazzlinDonna</a>, 2007. |
<a href="http://www.dazzlindonna.com/blog/making-money-online/business-development/conversions/conversion-secrets-for-free-downloads-to-paid-customers/">Permalink</a> |
<a href="http://www.dazzlindonna.com/blog/making-money-online/business-development/conversions/conversion-secrets-for-free-downloads-to-paid-customers/#comments">No comment</a> |
Add to
<a href="http://del.icio.us/post?url=http://www.dazzlindonna.com/blog/making-money-online/business-development/conversions/conversion-secrets-for-free-downloads-to-paid-customers/&title=Conversion Secrets for Free Downloads to Paid Customers">del.icio.us</a>
<br/>
Post tags: <a href="http://www.dazzlindonna.com/blog/tag/autoresponder/" rel="tag">autoresponder</a>, <a href="http://www.dazzlindonna.com/blog/tag/aweber/" rel="tag">Aweber</a>, <a href="http://www.dazzlindonna.com/blog/tag/aweber-communications-inc/" rel="tag">AWeber Communications Inc.</a>, <a href="http://www.dazzlindonna.com/blog/tag/conversions/" rel="tag">Conversions</a>, <a href="http://www.dazzlindonna.com/blog/tag/director-of-client-relations-development/" rel="tag">Director of Client Relations &amp; Development</a>, <a href="http://www.dazzlindonna.com/blog/tag/e-zine/" rel="tag">e-zine</a>, <a href="http://www.dazzlindonna.com/blog/tag/eye-site/" rel="tag">eye site</a>, <a href="http://www.dazzlindonna.com/blog/tag/free-trials/" rel="tag">free trials</a>, <a href="http://www.dazzlindonna.com/blog/tag/newtown/" rel="tag">Newtown</a>, <a href="http://www.dazzlindonna.com/blog/tag/opt-in-lists/" rel="tag">opt-in lists</a>, <a href="http://www.dazzlindonna.com/blog/tag/sean-cohen/" rel="tag">Sean Cohen</a>, <a href="http://www.dazzlindonna.com/blog/tag/subscriptions/" rel="tag">subscriptions</a>, <a href="http://www.dazzlindonna.com/blog/tag/trial-software/" rel="tag">trial software</a>, <a href="http://www.dazzlindonna.com/blog/tag/web-site-visitors/" rel="tag">web site visitors</a><br/>
This feed is for personal non-commercial use only. If you are not reading this in your news aggregator/reader or on <a href="http://www.dazzlindonna.com/blog">DazzlinDonna</a>, then the site you are looking at is probably infringing upon my copyright.<br/>
</small></p>]]></content:encoded>
			<wfw:commentRss>http://www.dazzlindonna.com/blog/making-money-online/business-development/conversions/conversion-secrets-for-free-downloads-to-paid-customers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk: enhanced (User agent is rejected)

Served from: www.dazzlindonna.com @ 2012-02-11 17:18:50 -->
