<?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>WPShout.com &#187; Marketing</title>
	<atom:link href="http://wpshout.com/category/marketing/feed/" rel="self" type="application/rss+xml" />
	<link>http://wpshout.com</link>
	<description>WordPress Tutorials</description>
	<lastBuildDate>Thu, 09 May 2013 13:00:16 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>Effective Landing Pages for WordPress</title>
		<link>http://wpshout.com/wordpress-landing-page/</link>
		<comments>http://wpshout.com/wordpress-landing-page/#comments</comments>
		<pubDate>Thu, 25 Oct 2012 14:00:09 +0000</pubDate>
		<dc:creator>Alex Denning</dc:creator>
				<category><![CDATA[Marketing]]></category>

		<guid isPermaLink="false">http://wpshout.com/?p=4375</guid>
		<description><![CDATA[<p><p><p>Lots of posts on WPShout are art directed, so you may wish to view this in your browser --> <a href="http://wpshout.com/wordpress-landing-page/">Effective Landing Pages for WordPress</a> </p></p><p></p></p><p><p>This is a post from <a href="http://wpshout.com">WPShout</a>. If you enjoyed the post, please head over to the site and share or leave a comment! --> <a href="http://wpshout.com/wordpress-landing-page/">Effective Landing Pages for WordPress</a></p></p>]]></description>
				<content:encoded><![CDATA[<p><p>Lots of posts on WPShout are art directed, so you may wish to view this in your browser --> <a href="http://wpshout.com/wordpress-landing-page/">Effective Landing Pages for WordPress</a> </p></p><p>If you have absolutely anything you want people to <em>do</em> when visiting your website &#8212; be that subscribe, download, purchase,  whatever &#8212; you need a landing page.</p>
<p>I realised I needed a landing page earlier this year after I released my eBook <a href="http://wpshout.com/wordpress-blogging-guide/">WordPress Blogging Guide</a> and nobody was downloading it! This puzzled me as it was, you know, <em>free</em>.</p>
<p><img class="alignnone size-full wp-image-4466" title="20121024201722151" src="http://wpshout.com/media/2012/10/201210242017221511.jpg" alt="" width="750" height="371" /></p>
<p>I figured I needed a landing page of sorts. The graph above shows downloads from July, when the eBook was launched, through October. I added the landing page at the start of October and it nearly doubled download rates.</p>
<p><span id="more-4375"></span></p>
<p>What did I do to make this magical landing page? Not much, actually. I just cut out everything that wasn&#8217;t the content. That mainly just meant stripping out the sidebar and making the content area smaller by default. I also added an extra call to action and changed the copy around slightly. Below is a side-by-side:</p>
<p><a href="http://wpshout.com/wordpress-blogging-guide/"><img class="alignnone size-full wp-image-4462" title="20121024202354866" src="http://wpshout.com/media/2012/10/201210242023548661.jpg" alt="" width="750" height="236" /></a></p>
<p>It&#8217;s fairly simple stuff and by this point hopefully I&#8217;ve persuaded you you might as well give one a go, so I&#8217;ll show you how I did mine and then take you through the other options.</p>
<h2>Simple styling; simple solution</h2>
<p>My favourite bit about how I turned my normal post into a landing page is just how damn simple it is. All I did was create an extra category, &#8220;Landing&#8221; and add some styling that applies whenever that category is selected. If you use your categories more religiously than I do, the same thing works with tags or any other taxonomy you want to add.</p>
<p>I used that handy little WordPress function, <a href="http://wpshout.com/body_class/">body_class, which I&#8217;ve written about before</a>. I then added a couple of lines of CSS I needed to think down the site and used body_class to target it.</p>
<p>The final product was a mere four lines of CSS:</p>

<div class="wp_syntax"><table><tr><td class="code"><pre class="css" style="font-family:monospace;"><span style="color: #6666ff;">.single-landing</span> <span style="color: #6666ff;">.container</span><span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span><span style="color: #933;">1100px</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span>
<span style="color: #6666ff;">.single-landing</span> <span style="color: #cc00cc;">#sidebar</span><span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">display</span><span style="color: #00AA00;">:</span><span style="color: #993333;">none</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span>
<span style="color: #6666ff;">.single-landing</span> <span style="color: #cc00cc;">#main</span> <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">margin</span><span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">0</span> <span style="color: #cc66cc;">0</span> <span style="color: #933;">40px</span> <span style="color: #933;">5%</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span>
<span style="color: #6666ff;">.single-landing</span> <span style="color: #6666ff;">.entry-meta</span><span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">display</span><span style="color: #00AA00;">:</span><span style="color: #993333;">none</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span></pre></td></tr></table></div>

<p>And that&#8217;s, uh, all there is to it. The .single-landing class is applied by body_class and targets <em>posts</em> which have the category <em>landing</em>, so there&#8217;s no worry about this showing up on archives or anywhere else. The best bit is that to use the same thing again, all I have to do is tick a category.</p>
<p>If and when I want to track stats, I don&#8217;t need them built straight into my dashboard; I&#8217;ve got Google Analytics to handle that for me.</p>
<p>It&#8217;s not a bad solution.</p>
<h2>The plugin options</h2>
<p>There are, however, vastly more complicated options and when I was first checking out my options these seemed to dominate the landscape.</p>
<div id="attachment_4463" class="wp-caption alignnone" style="width: 760px"><img class="size-full wp-image-4463" title="20121024210454521" src="http://wpshout.com/media/2012/10/20121024210454521.jpg" alt="" width="750" height="638" /><p class="wp-caption-text">Premise is a premium option&#8230; with a premium price tag.</p></div>
<p><a href="http://getpremise.com/">Copyblogger Media&#8217;s Premise</a> seemed to be the option that all the cool kids were using, and for your $165 you get some nice features like A/B testing, but for $165, you&#8217;d kinda hope it did more than just spit out some HTML with your logo on it.</p>
<p>It does some pretty handy other stuff too, including letting you securely sell eBooks and other digital downloads, so if you&#8217;re after something that lets you do that, it could well be worth the price tag.</p>
<div id="attachment_4464" class="wp-caption alignnone" style="width: 760px"><img class="size-full wp-image-4464" title="20121024211752187" src="http://wpshout.com/media/2012/10/20121024211752187.jpg" alt="" width="750" height="501" /><p class="wp-caption-text">Or MaxInbound is a slightly cheaper option.</p></div>
<p>Another premium option is <a href="http://maxinbound.com/">MaxInbound</a>, priced at a more reasonable $49 or $99, depending on the licence you go for. MaxInbound boasts email form integration &#8212; including Gravity Forms &#8212; as well as the standard MailChimp, Aweber and others.</p>
<p>If you&#8217;re after a plugin that makes landing pages for you and that&#8217;s all, MaxInbound might be the one to go for.</p>
<p>There is, of course, also a free option available in the plugin directory. <a href="https://wordpress.org/extend/plugins/ultimate-landing-page-and-coming-soon-page/">Ultimate Landing Page</a> is pretty basic, but if you don&#8217;t fancy coding yourself, it should do the job.</p>
<h2>Take your pick</h2>
<p>Those are your options, then, for creating a landing page. The way I&#8217;ve done is very simple, very easy and has undoubtedly been effective. The two premium plugins do, however, offer <em>more</em>. Premise&#8217;s A/B testing is pretty handy, but by no means is it the only way of A/B testing, should you want to go for that. MaxInbound looks like a solid option and Ultimate Landing Page is pretty basic.</p>
<p>So which one are you going to give a try?</p>
<p><p>This is a post from <a href="http://wpshout.com">WPShout</a>. If you enjoyed the post, please head over to the site and share or leave a comment! --> <a href="http://wpshout.com/wordpress-landing-page/">Effective Landing Pages for WordPress</a></p></p>]]></content:encoded>
			<wfw:commentRss>http://wpshout.com/wordpress-landing-page/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Affiliate Marketing For WordPress</title>
		<link>http://wpshout.com/wordpress-affiliate-marketing/</link>
		<comments>http://wpshout.com/wordpress-affiliate-marketing/#comments</comments>
		<pubDate>Tue, 20 Dec 2011 14:00:49 +0000</pubDate>
		<dc:creator>Alex Denning</dc:creator>
				<category><![CDATA[Marketing]]></category>

		<guid isPermaLink="false">http://wpshout.com/?p=3327</guid>
		<description><![CDATA[<p><p><p>Lots of posts on WPShout are art directed, so you may wish to view this in your browser --> <a href="http://wpshout.com/wordpress-affiliate-marketing/">Affiliate Marketing For WordPress</a> </p></p><p></p></p><p><p>This is a post from <a href="http://wpshout.com">WPShout</a>. If you enjoyed the post, please head over to the site and share or leave a comment! --> <a href="http://wpshout.com/wordpress-affiliate-marketing/">Affiliate Marketing For WordPress</a></p></p>]]></description>
				<content:encoded><![CDATA[<p><p>Lots of posts on WPShout are art directed, so you may wish to view this in your browser --> <a href="http://wpshout.com/wordpress-affiliate-marketing/">Affiliate Marketing For WordPress</a> </p></p><p>In recent weeks I&#8217;ve been trying to diversify WPShout&#8217;s income &#8212; you&#8217;ll notice that Shout now sports some links in the sidebar pointing to WooThemes and WPWebHost, both using affiliate links to do so. There are a couple of ways I&#8217;m now handling my affiliate marketing through my WordPress Dashboard and this post will run down the different ways I&#8217;m now doing this.</p>
<p><span id="more-3327"></span></p>
<p><object width="640" height="390" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="flashvars" value="i=418118&amp;h=t&amp;svr=http://www.screenr.com/&amp;vEmbed=&lt;iframe src=&quot;http://www.screenr.com/embed/eJ6s&quot; width=&quot;640&quot; height=&quot;390&quot; frameborder=&quot;0&quot;&gt;&lt;/iframe&gt;" /><param name="allowFullScreen" value="true" /><param name="wmode" value="opaque" /><param name="AllowScriptAccess" value="always" /><param name="src" value="http://cdn.screenr.com/public/1.7/flash/screenr.swf" /><param name="allowscriptaccess" value="always" /><param name="allowfullscreen" value="true" /><param name="pluginspage" value="http://www.macromedia.com/go/getflashplayer" /><embed width="640" height="390" type="application/x-shockwave-flash" src="http://cdn.screenr.com/public/1.7/flash/screenr.swf" flashvars="i=418118&amp;h=t&amp;svr=http://www.screenr.com/&amp;vEmbed=&lt;iframe src=&quot;http://www.screenr.com/embed/eJ6s&quot; width=&quot;640&quot; height=&quot;390&quot; frameborder=&quot;0&quot;&gt;&lt;/iframe&gt;" allowFullScreen="true" wmode="opaque" AllowScriptAccess="always" allowscriptaccess="always" allowfullscreen="true" pluginspage="http://www.macromedia.com/go/getflashplayer" /></object></p>
<p>As I did earlier in the year, I&#8217;ve kept this one relatively brief and I&#8217;ve used a screencast to show you how I do it.</p>
<h2>Making links nice</h2>
<p>The first thing I&#8217;ve now got is all my links in one place and standardised, all going: wpshout.com/go/product-name. I&#8217;m doing this with a plugin called <em><a href="http://wpshout.com/go/thirstyaffiliates/" rel="nofollow" target="_blank">Thirsty Affiliates</a></em>. It&#8217;s the only premium plugin I&#8217;m using on WPShout and it&#8217;s a great way of sorting and organising affiliate links, as the picture below shows.</p>
<p><a href="http://wpshout.com/media/2011/12/settings.jpg"><img class="alignnone size-full wp-image-3832" title="settings" src="http://wpshout.com/media/2011/12/settings.jpg" alt="" width="640" height="403" /></a></p>
<p>Using custom post types, Thirsty Affiliates provides an awesome way of giving your affiliate links a really professional look. You can sort all your links in one place and change them universally if the seller changes affiliate provider instead of having to go into every single post and page you&#8217;ve mentioned. It&#8217;s also got a neat little addon for the post editor screen which gives you all of your links in one place so you can easily add them into a post.</p>
<p>It really is an awesome little plugin and I thoroughly recommend <a href="http://wpshout.com/go/thirstyaffiliates/" rel="nofollow" target="_blank">you check it out</a>.</p>
<h2>Automatically linking</h2>
<p>All we&#8217;ve achieved so far is make our links <em>look</em> nice, but that&#8217;s not too much of a help; we want to have our links added automatically to certain words or phrases for <em>maximum profit</em>.</p>
<p>I do this by using a slightly unorthodox method: a plugin called <em><a href="http://wordpress.org/extend/plugins/seo-automatic-links/">SEO Smart Links</a></em>, which is meant to be used for setting up internal links to improve SEO, hence the name.</p>
<p><a href="http://wpshout.com/media/2011/12/seo-smart.jpg"><img class="alignnone size-full wp-image-3833" title="seo-smart" src="http://wpshout.com/media/2011/12/seo-smart.jpg" alt="" width="550" height="165" /></a></p>
<p>Install the plugin as usual from the Plugin Directory and activate it. Then, under <em>Settings</em> find <em>Automatic SEO Links.</em> You can then add a word to automatically link and a URL to link to, and that&#8217;s it.</p>
<h2>That&#8217;s all there is to it</h2>
<p>This really isn&#8217;t complicated stuff and I&#8217;m just using two plugins here to make links look nice and then automatically add them into posts. It&#8217;s another one of those things that <em>could</em> have been really complicated, but with the right help from a couple of plugins isn&#8217;t.</p>
<p><p>This is a post from <a href="http://wpshout.com">WPShout</a>. If you enjoyed the post, please head over to the site and share or leave a comment! --> <a href="http://wpshout.com/wordpress-affiliate-marketing/">Affiliate Marketing For WordPress</a></p></p>]]></content:encoded>
			<wfw:commentRss>http://wpshout.com/wordpress-affiliate-marketing/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Why WordPress?</title>
		<link>http://wpshout.com/why-wordpress/</link>
		<comments>http://wpshout.com/why-wordpress/#comments</comments>
		<pubDate>Fri, 02 Dec 2011 18:40:23 +0000</pubDate>
		<dc:creator>Alex Denning</dc:creator>
				<category><![CDATA[Hosting]]></category>
		<category><![CDATA[Landing]]></category>
		<category><![CDATA[Marketing]]></category>

		<guid isPermaLink="false">http://wpshout.com/?p=1734</guid>
		<description><![CDATA[<p><p><p>Lots of posts on WPShout are art directed, so you may wish to view this in your browser --> <a href="http://wpshout.com/why-wordpress/">Why WordPress?</a> </p></p><p></p></p><p><p>This is a post from <a href="http://wpshout.com">WPShout</a>. If you enjoyed the post, please head over to the site and share or leave a comment! --> <a href="http://wpshout.com/why-wordpress/">Why WordPress?</a></p></p>]]></description>
				<content:encoded><![CDATA[<p><p>Lots of posts on WPShout are art directed, so you may wish to view this in your browser --> <a href="http://wpshout.com/why-wordpress/">Why WordPress?</a> </p></p><p>Nearly two years ago now, I asked a number of members of the WordPress community why they used WordPress. Over those last two years WordPress has changed vastly and thus it&#8217;s time to update that post with the reasons <em>I </em>still use WordPress in 2011.</p>
<h2>1. The themes</h2>
<p><a href="http://wpshout.com/media/2009/12/themes.jpg"><img title="themes" src="http://wpshout.com/media/2009/12/themes.jpg" alt="" width="640" height="363" /></a></p>
<p>Nodoubt you&#8217;ve heard about WordPress&#8217; free and premium themes. These are undoubtedly one of the main attractions to WordPress and certainly the reason many people use it over other CMSes.</p>
<p>If you&#8217;re after free WordPress themes, the likes of Smashing Magazine are the places to look. Be wary of downloading themes from sites which exist <em>solely</em> to link to batches of themes as they <a href="http://wpmu.org/why-you-should-never-search-for-free-wordpress-themes-in-google-or-anywhere-else/">often sneak in their own backlinks</a>, using encrypted PHP to do so. Stick to places like the <a href="http://wordpress.org/extend/themes/">WordPress Theme Directory</a> and roundups from reputable sites <a href="http://wp.smashingmagazine.com/2011/07/05/free-wordpress-themes-2011-edition/">such as Smashing Magazine</a>.</p>
<p>However, a huge market has sprung up around paid WordPress themes and you can get some exquisitely designed themes for $50 or so. Even if you don&#8217;t want an out-of-the-box theme, you can still use one of the many frameworks available to build your site around, thus saving time (and money!).</p>
<p><span id="more-1734"></span></p>
<p><strong>My personal recommendation is <a href="http://wpshout.com/go/woothemes/" rel="nofollow" target="_blank">WooThemes</a>.</strong> WPShout runs the WooFramework, something I&#8217;d thoroughly recommend. WooThemes have <strong>over 100 paid and free themes</strong> and their monthly subscription is great value, so you should definitely <a href="http://bit.ly/shout-woo">check them out</a>.</p>
<h2>2. The hosting</h2>
<p>WordPress is supported by virtually all hosts, but some are vastly better than others. On WPShout I recently conducted an independent survey to find <a href="http://wpshout.com/wordpress-hosting-review/">the best WordPress hosts</a>; I&#8217;d thoroughly recommend you <a href="http://wpshout.com/wordpress-hosting-review/">check out the results</a> in order to find out which host is best for you.</p>
<p><strong>WPShout is hosted by <a href="http://wpshout.com/go/wpwebhost/" rel="nofollow" target="_blank">WPWebHost</a>, on their $7.95/month &#8220;Freedom Plan&#8221;.</strong> Since I moved to WPWebHost, I&#8217;ve had fantastic customer service and as I&#8217;m on a commercial package, I can honestly recommend it as something well worth getting. They&#8217;ve even given me a discount code &#8212; WPSHOUT &#8212; which will give you 30% off the Freedom Plan.</p>
<h2>3. The ease of use and flexibility</h2>
<p>The chief reason remains its ease of use and flexibility. Whether I want to create a <a href="http://wpshout.com/single-page-portfolios-with-wordpress/">fancy portfolio</a>, a <a href="http://wpshout.com/wordpress-e-commerce-no-plugin/">simple e-Commerce site</a> or a <a href="http://wpshout.com">straightforward blog</a>, <strong>WordPress is the easy option</strong>. The &#8220;famous five minute install&#8221; isn&#8217;t really true anymore &#8212; it takes me about thirty seconds to install a new WordPress site with my host, but we&#8217;ll come onto that later.</p>
<p>Developments such as custom post formats have meant WordPress is now much more than a blogging platform; it&#8217;s now a fully fledged CMS.</p>
<p>When I want to do something that <em>would</em> be more complicated, the vast number of <a href="http://wordpress.org/extend/plugins/">plugins </a>can just be dropped into my setup and allow me to do just about anything I could think of. If the plugin you want doesn&#8217;t exist, there&#8217;s likely to be someone with the same problem as you and a solution on its way.</p>
<h2>4. The speed</h2>
<p>WordPress<em> has the potential</em> to run extremely quickly. WPShout loads in roughly one and a half seconds and there are a couple of little tricks I use. The chief &#8220;trick&#8221;, if you can call it that, is to use W3 Total Cache. It&#8217;s an absolutely brilliant plugin which caches your site, thus reducing the amount of &#8220;work&#8221; that has to be done each time somebody loads your site.</p>
<p>I&#8217;ve often heard accusations levelled at WordPress of the code being &#8220;bloated&#8221;, but I&#8217;ve never seen anything to back this up nor have I seen this reflected in load times. WordPress <em>can</em> be slow if used irresponsibly, but a couple of simple steps and you&#8217;ll be flying.</p>
<p>I&#8217;ve written a fair bit about making WordPress run quickly on <em>Shout</em> and I wrote a fairly comprehensive tutorial for <a href="http://www.noupe.com/how-tos/speeding-up-wordpress.html">Noupe on the subject</a>. Good places to start, though are <em><a href="http://wpshout.com/faster-wordpress/">Faster WordPress</a> </em>and a nice overview <em><a href="http://www.iblogzone.com/2011/10/make-your-wordpress-site-load-faster.html">How To Make Your WordPress Site Load Faster</a></em>.</p>
<h2>5. The community</h2>
<p>None of the things I&#8217;ve mentioned thus far would exist without the wonderful WordPress community. They&#8217;re the people who help you when you get stuck, make the free themes you use on your blog, develop the plugins you rely on and ultimately make the platform you use.</p>
<p>It&#8217;s worth mentioning the license WordPress uses &#8212; the <a href="http://www.gnu.org/copyleft/gpl.html">General Public License</a> &#8211; which gives you immense freedom to do more or less anything you want.</p>
<p>One of the reasons I originally chose WordPress myself was because of the active community and it remains the single main reason why I continue to use WordPress; from a great community, all else flows.</p>
<p><p>This is a post from <a href="http://wpshout.com">WPShout</a>. If you enjoyed the post, please head over to the site and share or leave a comment! --> <a href="http://wpshout.com/why-wordpress/">Why WordPress?</a></p></p>]]></content:encoded>
			<wfw:commentRss>http://wpshout.com/why-wordpress/feed/</wfw:commentRss>
		<slash:comments>74</slash:comments>
		</item>
		<item>
		<title>Email Newsletters For WordPress</title>
		<link>http://wpshout.com/wordpress-email-newsletter/</link>
		<comments>http://wpshout.com/wordpress-email-newsletter/#comments</comments>
		<pubDate>Tue, 08 Nov 2011 16:00:14 +0000</pubDate>
		<dc:creator>Alex Denning</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Marketing]]></category>

		<guid isPermaLink="false">http://wpshout.com/?p=3513</guid>
		<description><![CDATA[<p><p><p>Lots of posts on WPShout are art directed, so you may wish to view this in your browser --> <a href="http://wpshout.com/wordpress-email-newsletter/">Email Newsletters For WordPress</a> </p></p><p></p></p><p><p>This is a post from <a href="http://wpshout.com">WPShout</a>. If you enjoyed the post, please head over to the site and share or leave a comment! --> <a href="http://wpshout.com/wordpress-email-newsletter/">Email Newsletters For WordPress</a></p></p>]]></description>
				<content:encoded><![CDATA[<p><p>Lots of posts on WPShout are art directed, so you may wish to view this in your browser --> <a href="http://wpshout.com/wordpress-email-newsletter/">Email Newsletters For WordPress</a> </p></p><p>As you may have seen in <a href="http://wpshout.com/premium-themes-competition/">last week&#8217;s competition post</a>, I recently created an email newsletter for WPShout. You may have also noticed I ended up using <a href="http://bit.ly/shout-mail">MailChimp</a> instead of a built-into-WordPress solution.</p>
<p>Something which used <em>just</em> WordPress was what I was originally after, so I set out the following criteria:</p>
<ul>
<li><strong>Powered by WordPress</strong>, ideally with custom post types or a simple admin interface.</li>
<li><strong>Double opt-in</strong>, with a nice bit of code I can put in my sidebar and style for signups.</li>
<li>Import and export of lists as CSVs.</li>
<li>Shortcodes or similar for <strong>unsubscribe links</strong>.</li>
<li>Some sort of <strong>performance tracking</strong>.</li>
<li>Cheap; either a premium plugin or something with low monthly costs.</li>
</ul>
<p>It turns out this was a fairly comprehensive list of criteria and it wasn&#8217;t possible to fulfil <em>all</em> of the criteria.</p>
<p>This left me with two options:</p>
<ul>
<li>Use a premium plugin, such as <em><a href="http://codecanyon.net/item/wordpress-email-newsletter-plugin/149180?ref=Nometet">WordPress Email Newsletter</a></em>, and sacrifice functionality I wanted such as tracking.</li>
<li>Or use a third party service such as MailChimp or Aweber and not be able to send out newsletters from my WordPress dashboard.</li>
</ul>
<p>In the end I went with MailChimp as I didn&#8217;t want to sacrifice functionality and it&#8217;s not too much of a hassle to send emails out from. I went for MailChimp over Aweber simply because I&#8217;m familiar with it (and it&#8217;s free!).</p>
<h2>Creating a signup popup</h2>
<p>One of the things I wanted to be able to do was create something similar to what the likes of Darren Rowse on <a href="http://problogger.net">ProBlogger </a>use &#8212; a little modal popup which shows to first time visitors inviting them to signup to the newsletter. I initially tried to do this plugin-less, but it didn&#8217;t turn out well and so I ended up using a plugin called <em><a href="http://wordpress.org/extend/plugins/wp-super-popup/">WP Super Popup</a></em>, which essentially does the same thing as the <a href="http://www.popupdomination.com/new/">Popup Domination</a> plugin on ProBlogger, just there aren&#8217;t pre-designed forms.</p>
<p><a href="http://wpshout.com/media/2011/11/mailchimp-form-designer1.jpg"><img class="alignnone size-full wp-image-3715" title="mailchimp-form-designer" src="http://wpshout.com/media/2011/11/mailchimp-form-designer1.jpg" alt="" width="640" height="348" /></a></p>
<p>Not having pre-designed forms was fine, though as I wanted to show my MailChimp signup form which I embedded by using an iFrame (as there&#8217;s no embed code for larger forms on MailChimp, oddly). Obviously I don&#8217;t have any historic data to go on, but so far the popup has accounted for 1/3 of new subscriptions, so seems to be doing relatively well.</p>
<h2>Signing up in the sidebar</h2>
<p><a href="http://wpshout.com/media/2011/11/sidebar.jpg"><img class="alignnone size-full wp-image-3716" title="sidebar" src="http://wpshout.com/media/2011/11/sidebar.jpg" alt="" width="446" height="242" /></a></p>
<p>The other thing I wanted to do was set up a sidebar subscription form. This too was relatively easy &#8212; I just grabbed the embed code off MailChimp and pasted it into the sidebar. I did then do a couple of tweaks though &#8212; instead of adding another stylesheet to Shout by using MailChimp&#8217;s stylesheet on its CDN, I put it at the bottom of Shout&#8217;s. I then had a play around with the styling to make it <em>look</em> like the rest of the site, moving the buttons around so they fit in Shout&#8217;s lovely uber-wide sidebar.</p>
<h2>Get the newsletter!</h2>
<p>It&#8217;s been a fairly straightforward process setting up the newsletter &#8212; there were times when I had no idea what I was doing, but it all seems to have turned out well in the end! I&#8217;m now going to tell you to go and subscribe, of course. If you&#8217;re quick, there are <a href="http://wpshout.com/premium-themes-competition/">hundreds of themes to be won</a>, too!</p>
<p><p>This is a post from <a href="http://wpshout.com">WPShout</a>. If you enjoyed the post, please head over to the site and share or leave a comment! --> <a href="http://wpshout.com/wordpress-email-newsletter/">Email Newsletters For WordPress</a></p></p>]]></content:encoded>
			<wfw:commentRss>http://wpshout.com/wordpress-email-newsletter/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
