<?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>FiddyP &#187; upgrade</title>
	<atom:link href="http://fiddyp.co.uk/tag/upgrade/feed/" rel="self" type="application/rss+xml" />
	<link>http://fiddyp.co.uk</link>
	<description>The personal blog of Andy Bailey</description>
	<lastBuildDate>Tue, 17 Jan 2012 09:02:09 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Taming the Upgrades plugin from http://premium.wpmudev.org</title>
		<link>http://fiddyp.co.uk/taming-the-upgrades-plugin/</link>
		<comments>http://fiddyp.co.uk/taming-the-upgrades-plugin/#comments</comments>
		<pubDate>Tue, 02 Feb 2010 19:54:20 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Blog Tools]]></category>
		<category><![CDATA[Making / Made Money]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[credits]]></category>
		<category><![CDATA[premium]]></category>
		<category><![CDATA[profit]]></category>
		<category><![CDATA[upgrade]]></category>
		<category><![CDATA[wpmu]]></category>

		<guid isPermaLink="false">http://fiddyp.co.uk/?p=1577</guid>
		<description><![CDATA[If you&#8217;re lucky enough to have a subscription to Premium WPMU Dev account then you&#8217;ll have access to great monetization plugins like the Upgrades or Supporter which take [..]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Ffiddyp.co.uk%2Ftaming-the-upgrades-plugin%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Ffiddyp.co.uk%2Ftaming-the-upgrades-plugin%2F&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>If you&#8217;re lucky enough to have a subscription to <a href="http://premium.wpmudev.org/">Premium WPMU Dev</a> account then you&#8217;ll have access to great monetization plugins like the Upgrades or Supporter which take all the pain out of providing a &#8216;pay for&#8217; service that can handle payments through Paypal, Google or even Amazon gateways.</p>
<p>I downloaded and installed the upgrades plugin a while ago and I&#8217;ve used it to monetize certain parts of my ComLuv site. There&#8217;s the usual way of adding plugins to the Upgrades directory and configuring them to be used which I&#8217;ll go into in a future post but I wanted to use the system slightly differently, and that was to charge users for adding new URLs to an account or to add default links to their returned list of posts.</p>
<h2>The advantage of premium</h2>
<p>Some of the advantages to using wpmupremium plugins is the support you receive, knowledge that the plugin will be updated to keep it compatible with new changes and my favourite is, the quality of the code.</p>
<p>When you&#8217;re getting premium, you&#8217;re getting premium code which for me personally, has taught me a LOT about how wordpress works. Particularly custom hooks and actions and filters. That was always a mystery to me until I dissected the plugins I downloaded from their site so it was a breeze to modify the upgrades plugin to work for users who don&#8217;t have blogs and start using the internal functions in a daughter template to do what I wanted.</p>
<h3>Modifying the upgrades plugin</h3>
<p><img src="http://fiddyp.co.uk/wp-content/uploads/2010/02/buynewurlwithcredits-300x165.png" alt="" title="buynewurlwithcredits" width="300" height="165" class="aligncenter size-medium wp-image-1597" /><br />
I needed to allow the upgrades menu to show for regular users because not everyone who joins the Comluv site starts a blog. This was just a simple case of changing the user level so that everyone, not just blog owners can see the menu and buy credits.</p>
<p>There are two places to modify:<br />
<strong><br />
/mu-plugins/upgrades-framework.php<br />
line ~ 197-200 (upgrades plug pages framework function)<br />
change add menu and submenu calls to </strong></p>
<p><code>add_menu_page($upgrades_branding_plural, $upgrades_branding_plural, 0, 'upgrades.php');<br />
add_submenu_page('upgrades.php', __('Credits'), __('Credits'), 0, 'credits', 'upgrades_credits_output' );<br />
add_submenu_page('upgrades.php', __('History'), __('History'), 0, 'history', 'upgrades_log_output' );</code></p>
<p><strong>line ~ 1919 (upgrades_credits_output function)<br />
change user check to<br />
</strong><br />
<code>if(!current_user_can('level_0')) {</code></p>
<h2>Creating the daughter template</h2>
<p>Adding another page you can use as a template is pretty easy, you just need to create a new php file in your theme directory and make sure it has the correct remarks at the top to identify it as a template page.</p>
<p><code><br />
/*<br />
Template Name: ComLuv purchase url<br />
*/<br />
</code></p>
<p>Next just copy and paste the main calls from another template, you&#8217;ll be deleting most of it like the loop to display posts and replacing it with your own hard coded form and text. Be sure to keep the divs that surround the content intact.</p>
<p>I wrote a description of the item being sold and added a form.<br />
(DON&#8217;T copy and paste from this page, I had to remove the beginning &lt; characters from the code so it displays properly)<br />
<code><br />
form action='/member/additional-urls/' method="POST"><br />
		input name="addurl" type="text" size="30"/><br />
		input type="submit" name="submit1" value="Submit"/><br />
		<?php wp_nonce_field ( 'addurl1' ); ?><br />
		/form><br />
</code></p>
<p>I also added a finish_page() function which just closes the /div tags so I could easily break out of what I was displaying without rendering the rest of the custom code below it.</p>
<p>You set the action to the page slug you&#8217;re publishing the page as and put a nonce field in there so you can check it with the next bit of code to prevent a naughty user from trying to call the purchase directly.</p>
<h2>Handling the purchase</h2>
<p>Next, you need to handle the data that gets submitted by your form and do the magic with the users credits.</p>
<p><code>if(isset($_POST['submit1'])){<br />
	$nonce=$_REQUEST['_wpnonce'];<br />
	if(!wp_verify_nonce($nonce,'addurl1')){<br />
		echo 'Page request deformed, please go back and try again. (b1s1)';<br />
		finish_page();<br />
	}<br />
	if(!$_POST['addurl']){<br />
		echo 'Please go back and enter a value';<br />
		finish_page();<br />
	}<br />
	// check if user has enough credits<br />
	global $user_ID;<br />
	$credits = upgrades_user_credits_available($user_ID);<br />
	if($credits < 3){<br />
		echo 'h2>Error - Insufficient Credits/h2>';<br />
		echo 'p>You will need to purchase some credits to register another URL, you currently have strong>'.$credits.'/strong>';<br />
		echo 'p>a href="/wp-admin/upgrades.php?page=credits">Click here to visit the purchase page/a>';<br />
		finish_page();<br />
	}<br />
// if we're here then everything is ok to provide service and deduct credits<br />
$credits = upgrades_user_credits_available($user_ID);<br />
		$credits -= 3;<br />
		upgrades_user_credits_update($credits);<br />
		upgrades_log_add_msg($user_ID,'You paid 3 credits for an additional URl - '.$url);<br />
		do_add_url($url,$user_ID);<br />
		echo 'h2>Site added, 3 credits used on your account/h2>';<br />
		echo 'p>You have '.$credits.' credits remaining';<br />
		echo 'p>a href="/member/additional-urls/">Click here to refresh the page/a>';<br />
</code></p>
<p>The first bit gets the nonce you created and checks it and displays an error message if it doesn&#8217;t match<br />
Next, check the field you&#8217;re expecting and spit out an error if it is empty.<br />
Next, check the user has enough credits and spit out an error if they don&#8217;t.<br />
If everything is fine, continue.</p>
<p>use $credits = upgrades_user_credits_available($user_ID); to get the users current credits total<br />
use upgrades_user_credits_update($credits); to set the users credits total to $credits (after you deduct what your item/upgrade costs)<br />
use upgrades_log_add_msg($user_ID,&#8217;You paid 3 credits for an additional URl &#8211; &#8216;.$url); to add a message to the users Credits history page so they know they used some.</p>
<p>That&#8217;s it, easy peasy! Here&#8217;s an idea, use credits to sell digital downloads on another page, just check and deduct the users credits before allowing a dowload.</p>
<p>I&#8217;ll post a follow up to this soon on how to use the upgrades plugin to add a new package that enables the RSS widget for a blog (I&#8217;ll show you how to disable the rss widget too)</p>
<p>You can get over 100 plugins and themes of premium quality at <a href="http://premium.wpmudev.org">http://premium.wpmudev.org</a> and they all help to make your wpmu site better than the jones&#8217;s <img src='http://fiddyp.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://fiddyp.co.uk/taming-the-upgrades-plugin/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Probably the biggest personal project I have undertaken ever</title>
		<link>http://fiddyp.co.uk/probably-the-biggest-personal-project-i-have-undertaken-ever/</link>
		<comments>http://fiddyp.co.uk/probably-the-biggest-personal-project-i-have-undertaken-ever/#comments</comments>
		<pubDate>Sun, 17 May 2009 19:37:27 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Blog News]]></category>
		<category><![CDATA[commentluv]]></category>
		<category><![CDATA[new site]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[profit]]></category>
		<category><![CDATA[upgrade]]></category>

		<guid isPermaLink="false">http://www.fiddyp.co.uk/?p=1342</guid>
		<description><![CDATA[It&#8217;s happening, it&#8217;s really going on right this minute. The new CommentLuv site and plugin are literally 2 weeks away (sooner for some). I&#8217;ve made an announcement on [..]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Ffiddyp.co.uk%2Fprobably-the-biggest-personal-project-i-have-undertaken-ever%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Ffiddyp.co.uk%2Fprobably-the-biggest-personal-project-i-have-undertaken-ever%2F&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>It&#8217;s happening, it&#8217;s really going on right this minute. The new CommentLuv site and plugin are literally 2 weeks away (sooner for some).</p>
<p><img src="http://www.fiddyp.co.uk/wp-content/uploads/2009/05/commentluvgrab-300x232.jpg" alt="" width="300" height="232" class="alignnone size-medium wp-image-1343" /></p>
<p>I&#8217;ve made an announcement on the main CommentLuv site and suspended member registrations until all the existing subscribers and members have been imported to the new site. I will try and move everything else without causing any major disruption to normal use.</p>
<p>This is the culmination of 2 years worth of updates, improvements and masses of new learnings. I was able to bring commentluv up from a humble wordpress only plugin to a combined site and multi-platform utility that got used by thousands of blog owners and (literally) millions of people every month felt a little bit of luv.</p>
<p>Now, CommentLuv is used on WordPress, Blogger, Jskit, Haloscan and more will come when I release details of the API . When that happens, there wont be a commenting system out there that I wont try to code a CommentLuv plugin for! I&#8217;m sure there are some geeks out there that&#8217;ll be able to use the API to create their own versions for whatever platform they can imagine too so the chances are that if you didn&#8217;t have CommentLuv before, you will be able to get it soon!</p>
<h3>Some Fancy Features</h3>
<p class="alert"><strong>Free WordPress 2.7.1 Blog with plugins</strong><br />Every single existing and future member of CommentLuv will be able to create their own WordPress 2.7.1 blog with plugins like CommentLuv already installed. All will be hosted on the new server and all will be free for any member to use!</p>
<p><img src="http://fiddyp.co.uk/wp-content/uploads/2009/05/wpdashboard.jpg" alt="" width="300" height="163" class="alignnone size-medium wp-image-1345" /></p>
<p class="info"><strong>Multiple Sources</strong><br />You will be able to register up to 5 sites with your account and retrieve posts from any and all of them when you comment on CommentLuv sites</p>
<p><img src="http://www.fiddyp.co.uk/wp-content/uploads/2009/05/multiplesources-300x225.jpg" alt="" width="300" height="225" class="alignnone size-medium wp-image-1346" /></p>
<p class="download"><strong>Premium Features</strong><br />As well as the whole host of blogging tools available for free, there will be some fantastic features such as a full newsletter/autoresponder package that can be integrated into your blog to provide feed subscriptions, newsletters, broadcasts and more. All with full open and click rate statistics, double and even triple opt-in. Live statistics on bounces, opens, clicks and forwards. Pie charts and graphs updated in real time. There&#8217;s even more to see here!</p>
<p><img src="http://www.fiddyp.co.uk/wp-content/uploads/2009/05/listluv-300x134.jpg" alt="" width="300" height="134" class="alignnone size-medium wp-image-1347" /></p>
<h3>Please be patient</h3>
<p>This has turned out to be the biggest personal project I have undertaken and it wouldn&#8217;t have been possible without the huge assistance from Ron and Andrea (http://ronandandrea.com) who took care of making the WPMU site and new CommentLuv API to my sometimes semi-coherent specifications!<br />
The finishing touches are being done now so I will need your patience as I fill the site with the content that&#8217;ll be needed for instructions, tutorials, videos, faqs, support tickets, forums and all the other things that are bound to turn up over the next 2 weeks.</p>
<h3>Get to be the first!</h3>
<p>You will find out when I&#8217;m ready to start issuing invites and preliminary accounts if you&#8217;re already a commentluv user. If you&#8217;re not, you can enter your details here and as soon as you confirm your subscription, you will receive an email when I open up the site for pre-launch beta users. There will also be news of how you can download the very latest version of the plugin before anyone else so you can be the first on the new list of active sites. Oh the joy!!</p>
<form method="post" action="http://comluv.com/listluv/subscribe.php">
<p>Name / Username</p>
<p>Email Address</p>
</form>
]]></content:encoded>
			<wfw:commentRss>http://fiddyp.co.uk/probably-the-biggest-personal-project-i-have-undertaken-ever/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>Forcing the issue with CommentLuv</title>
		<link>http://fiddyp.co.uk/forcing-the-issue-with-commentluv/</link>
		<comments>http://fiddyp.co.uk/forcing-the-issue-with-commentluv/#comments</comments>
		<pubDate>Wed, 19 Nov 2008 09:32:27 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Blog News]]></category>
		<category><![CDATA[commentluv]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[profit]]></category>
		<category><![CDATA[upgrade]]></category>

		<guid isPermaLink="false">http://www.fiddyp.co.uk/?p=1087</guid>
		<description><![CDATA[The new version of CommentLuv has been going since September 1st and has been written about on: My Forum The plugin page on my blog The CommentLuv site [..]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Ffiddyp.co.uk%2Fforcing-the-issue-with-commentluv%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Ffiddyp.co.uk%2Fforcing-the-issue-with-commentluv%2F&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>The new version of CommentLuv has been going since September 1st and has been written about on:</p>
<ol>
<li>My Forum</li>
<li>The plugin page on my blog</li>
<li>The CommentLuv site</li>
<li>The wordpress codex</li>
<li>The WordPress MU Site</li>
<li>Every registered member</li>
<li>Through visiting every site I get notified about in Google Alerts that is using the old version.</li>
<li>Running a massive contest encouraging people to upgrade to the latest version</li>
</ol>
<p>The old version is responsible for about 50,000 unnecessary hits to my server every day from automated spam bots that post direct to the wordpress comment post file, sometimes the server would fold from a busy spam day (it once had 1 million spam hits in a few hours!) so I had to find another way to let the people know that their version needs updating (just in case they didn&#8217;t see any of the above places).</p>
<p>Not to mention all the people complaining that their latest post wasn&#8217;t shown on some blogs, this is down to Feedburner not passing back fresh feeds to scripts unless they have cache enabled. The new version does this but the old one doesn&#8217;t. (feedburners fault, not mine!)</p>
<p>So, I put in a small message to be sent back instead of the last blog post if it was requested in the first 10 minutes of each hour;</p>
<blockquote><p>CommentLuv needs updating on this site. Please download the latest version and install it on your site. This message will apear during the first 10 minutes of each hour. This remote script will cease returning posts in 7 days.</p></blockquote>
<p>Is that so bad?</p>
<p>The alternative is just delete the remote scripts and everyone using the old version will be left with nothing happening instead.</p>
<p>What do you think? should I keep with the message or just delete the remote scripts so nothing gets sent back to the people that don&#8217;t upgrade or view their plugins page?</p>
<p>I&#8217;ve only seen one site complain but it was an un-ranked, 0.4 average comments per post site written anonymously who posted to their site instead of contacting me direct via the squillion ways possible (my email, forum, site, phone, skype, yahoo, gmail&#8230;&#8230;) but, ever the conscientious coder, I don&#8217;t want to offend anyone by daring to ask them to upgrade a plugin because their old one can affect the performance of my server and subsequently, the 100-200K last blog posts that get sent back to the users who DID upgrade. :-/</p>
<p>If you see the message above when someone comments, it means the blog being commented on needs to upgrade the plugin for the good of everyone who uses the proper version (in fact, for the good of the whole universe!) I have a support ticket function open at CommentLuv so if anyone needs help updating or even if you want to shout at me, you just need to click&#8230; (surely that is more efficient and quicker than writing a whole post about it?)</p>
]]></content:encoded>
			<wfw:commentRss>http://fiddyp.co.uk/forcing-the-issue-with-commentluv/feed/</wfw:commentRss>
		<slash:comments>26</slash:comments>
		</item>
		<item>
		<title>Some absolute cracking good plugins and tools for WP site developers</title>
		<link>http://fiddyp.co.uk/some-absolute-cracking-good-plugins-and-tools-for-wp-site-developers/</link>
		<comments>http://fiddyp.co.uk/some-absolute-cracking-good-plugins-and-tools-for-wp-site-developers/#comments</comments>
		<pubDate>Wed, 04 Jun 2008 11:42:01 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Blog News]]></category>
		<category><![CDATA[Blog Tools]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[admin template]]></category>
		<category><![CDATA[contact form]]></category>
		<category><![CDATA[developer]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[profit]]></category>
		<category><![CDATA[upgrade]]></category>

		<guid isPermaLink="false">http://www.fiddyp.co.uk/?p=375</guid>
		<description><![CDATA[I&#8217;ve been away from fiddyp for a while but not away from wordpress as I&#8217;ve been working really hard on some WP based sites that have turned out [..]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Ffiddyp.co.uk%2Fsome-absolute-cracking-good-plugins-and-tools-for-wp-site-developers%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Ffiddyp.co.uk%2Fsome-absolute-cracking-good-plugins-and-tools-for-wp-site-developers%2F&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p><img src="http://www.fiddyp.co.uk/wp-content/uploads/2008/06/wordpress-150x150.png" alt="" width="150" height="150" align="left" />I&#8217;ve been away from fiddyp for a while but not away from wordpress as I&#8217;ve been working really hard on some WP based sites that have turned out pretty well using WP as a CMS combined with some useful and custom plugins.</p>
<p>It&#8217;s pretty amazing what you can do with some customized templates and a bit of hacking the code here and there so I thought I&#8217;d list some of the useful tools I work with to make life a little bit easier.</p>
<hr />
<img src="http://fiddyp.co.uk/wp-content/uploads/2008/06/cforms.jpg" alt="" width="187" height="399" class="alignleft size-full wp-image-377" /><br />
<h2>Cforms II</h2>
<p> This is a really easy plugin to use straight out of the box just by entering &lt;!&#8211;cforms&#8211;&gt; onto a post or page where you want the contact form to appear.</p>
<p>Select which fields you want in the options page and you can&#8217;t get a simpler contact form made on WordPress!</p>
<p>It can be used in a more complex way too, it has options for AJAX, custom fields and even a file upload function. Get into the code some more and there are ways to generate custom contact forms within the wordpress template code so for example, you could generate a &#8220;request more information on this product&#8221; form on a product listing which has the product code automatically inserted as a hidden field which will be sent along with the contacts details and message.</p>
<p>You can read more about Cforms II and download the latest version at<br />
<a href="http://www.deliciousdays.com/cforms-plugin">http://www.deliciousdays.com/cforms-plugin</a></p>
<p>It works well and is constantly being updated with new features and options.<br />
<span id="more-375"></span></p>
<p></p>
<hr />
<p><img src="http://www.fiddyp.co.uk/wp-content/uploads/2008/06/searchwp.jpg" alt="" width="331" height="204" align="left" /><br />
<h2>Search Everything</h2>
<p>This is a useful plugin if you use custom fields in your posts that need to be searchable, this plugin can be configured to search all different parts of your WP content.</p>
<p>    * * Search Every Page<br />
    * * Search Every Tag<br />
    * * Search Every Category<br />
    * * Search non-password protected pages only<br />
    * * Search Every Comment<br />
    * * Search only approved comments<br />
    * * Search Every Draft<br />
    * * Search Every Excerpt<br />
    * * Search Every Attachment<br />
    * * Search Every Custom Field (metadata)<br />
    * * Exclude Posts from search<br />
    * * Exclude Categories from search</p>
<p>You can download it from the authors page <a href="http://dancameron.org/wordpress/wordpress-plugins/search-everything-wordpress-plugin">http://dancameron.org/wordpress/wordpress-plugins/search-everything-wordpress-plugin</a></p>
<hr />
<img src="http://fiddyp.co.uk/wp-content/uploads/2008/06/fluency11.jpg" alt="" width="500" height="100" class="alignnone size-full wp-image-379" /></p>
<h2>Fluency Admin</h2>
<p>This plugin will completely change the look of your admin dashboard. It looks wonderful in Firefox and gives a much more proffesional look to the dashboard. I like to put this on sites that have been developed as a simple CMS or mainly static content. Create an author account and give that to the client, they&#8217;ll log in to a nice looking dashboard and have access just for managing posts.</p>
<p>You can see more screenshots (plus one below) and download the plugin here<br />
<a href="http://deanjrobinson.com/projects/fluency-admin/">http://deanjrobinson.com/projects/fluency-admin/</a></p>
<hr />
<a href='http://fiddyp.co.uk/wp-content/uploads/2008/06/fluency.jpg'><img src="http://www.fiddyp.co.uk/wp-content/uploads/2008/06/fluency-150x150.jpg" alt="" width="150" height="150" class="alignnone size-thumbnail wp-image-380" align="left"></a><br />
<h2>Dashboard Editor</h2>
<p>This is another useful one for improving the clients experience, it allows you to remove any and all of the items you usually see when you first log in to the dashboard.</p>
<p>You can enter your own html and widgets which is really usefull for putting up instructions and videos for your client to use (see the enlargement of the picture)</p>
<p>You can download it from here<br />
<a href="http://anthologyoi.com/plugins">http://anthologyoi.com/plugins</a></p>
<hr />
<p><img src="http://fiddyp.co.uk/wp-content/uploads/2008/06/oneclick1.png" alt="" width="484" height="192" class="alignnone size-full wp-image-381" /><br />
I guess I should have shown you this one first because it makes the installation of plugins and themes so so so much easier!</p>
<p>Once installed and activated, you can install new plugins simply by pasting the url to the download location into the box of the plugin page, choose if it&#8217;s a theme or plugin and it&#8217;ll pop off and download and extract the zip file to the correct location leaving you only needing to activate the new plugin.</p>
<p>Even easier is using the plugin with a firefox extension which lets you right click a plugin download link in your browser and choose to install it direct to your wordpress site (provided you set the url to your site in the addon options)</p>
<p>You can download it here<br />
<a href="http://anirudhsanjeev.org/oneclick-plugin/">http://anirudhsanjeev.org/oneclick-plugin/</a></p>
<hr />
<img src="http://www.fiddyp.co.uk/wp-content/uploads/2008/06/icon_upgrade_large.gif" alt="" width="96" height="103" align="left" hspace="8" vspace="8" /><br />
<h2>Instant Upgrade</h2>
<p>This plugin will take all the pain out of upgrading your WordPress version, it&#8217;s always a good idea to back up fully before doing any upgrade but this plugin takes all the pain out of deleting your wp files and updating with the new version. I&#8217;ve managed to upgrade all the way from 2.0 with this without any problems..</p>
<p>You can download the plugin here<br />
<a href="http://www.zirona.com/software/wordpress-instant-upgrade/">http://www.zirona.com/software/wordpress-instant-upgrade/</a></p>
<hr />
<p>That&#8217;s it, my list of plugins that always get installed on a new WP install if I&#8217;m designing for a client. Check them out, I&#8217;m sure you&#8217;ll find one or two of them useful..</p>
]]></content:encoded>
			<wfw:commentRss>http://fiddyp.co.uk/some-absolute-cracking-good-plugins-and-tools-for-wp-site-developers/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
	</channel>
</rss>

