<?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>mogmachine</title>
	<atom:link href="http://www.mogmachine.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mogmachine.com</link>
	<description>WordPress Specialist - Developer &#38; Consultant &#124; London</description>
	<lastBuildDate>Tue, 30 Apr 2013 12:36:55 +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>Shopp: Add Custom Shipping Carrier</title>
		<link>http://www.mogmachine.com/shopp-add-custom-shipping-carrier/</link>
		<comments>http://www.mogmachine.com/shopp-add-custom-shipping-carrier/#comments</comments>
		<pubDate>Tue, 30 Apr 2013 12:36:55 +0000</pubDate>
		<dc:creator>mog</dc:creator>
				<category><![CDATA[Insights]]></category>
		<category><![CDATA[carrier]]></category>
		<category><![CDATA[shipping]]></category>
		<category><![CDATA[shopp]]></category>

		<guid isPermaLink="false">http://www.mogmachine.com/?p=2324</guid>
		<description><![CDATA[<p>How to add a custom shipping carrier to Shopp. A tutorial on how to add a shipping carrier to Shopp WordPress commerce plugin.</p><p>The post <a href="http://www.mogmachine.com/shopp-add-custom-shipping-carrier/">Shopp: Add Custom Shipping Carrier</a> appeared first on <a href="http://www.mogmachine.com">mogmachine</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>For a long time Shopp has been slightly restricted in the selection of shipping carriers it is packaged with in terms specifically of sending out nice shipment notifications to your customers.</p>
<p>However here is a way to add your own shipping carriers to shop.</p>
<p>To make this work you will need to do 2 things, &#8230;firstly add and modify the following code to your themes functions.php file. Then do not forget to go into the Shopp > Settings > Shipping and activate your new shipping method.</p>
<p>I have added 2 examples below, ..as both Royal Mail and Parcel Force in the UK do not support tracking numbers in the url in the tracking page, ..so in the first example function I just include the link to the tracking page in the url (which the user is directed to on clicking on the tracking number in the email), but if your carrier does support this, then in the second example I have included how to acheive this.</p>
<pre>
// register filter callback
add_filter('shopp_shipping_carriers', 'shopp_shipping_carriers_filter');

// create filter function
function shopp_shipping_carriers_filter( $carriers ) {
    $carriers['royalmail'] = new ShippingCarrier(
        'Royal Mail', // carrier name
        'http://www.royalmail.com/', // carrier website
        '*', // carrier's operating countries (* for all)

        // tracking number replacement string
        'http://www.royalmail.com/track-trace' 
        );

    $carriers['parcelforce'] = new ShippingCarrier(
        'Parcel Force', // carrier name
        'http://www.parcelforce.com/', // carrier website
        'GB', // two digit alpha ISO country code

        // tracking number replacement string
        'http://www.parcelforce.com/track-trace?trackId=%s',

        '/^(Z|[A-Z]{2}[A-Z0-9]{9}[A-Z]{2})/' // tracking number regex pattern
        );

    return $carriers;
}
</pre>
<p>The post <a href="http://www.mogmachine.com/shopp-add-custom-shipping-carrier/">Shopp: Add Custom Shipping Carrier</a> appeared first on <a href="http://www.mogmachine.com">mogmachine</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.mogmachine.com/shopp-add-custom-shipping-carrier/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Backup Coda 2 Sites and Preferences in Dropbox</title>
		<link>http://www.mogmachine.com/how-to-backup-coda-2-sites-and-preferences-in-dropbox/</link>
		<comments>http://www.mogmachine.com/how-to-backup-coda-2-sites-and-preferences-in-dropbox/#comments</comments>
		<pubDate>Sat, 05 Jan 2013 09:54:14 +0000</pubDate>
		<dc:creator>mog</dc:creator>
				<category><![CDATA[Insights]]></category>
		<category><![CDATA[coda]]></category>
		<category><![CDATA[coda2]]></category>
		<category><![CDATA[dropbox]]></category>
		<category><![CDATA[terminal]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.mogmachine.com/?p=2315</guid>
		<description><![CDATA[<p>A step by step guide on how to setup your Coda and Coda 2 preferences and sites to backup automatically to your Dropbox account.</p><p>The post <a href="http://www.mogmachine.com/how-to-backup-coda-2-sites-and-preferences-in-dropbox/">How To Backup Coda 2 Sites and Preferences in Dropbox</a> appeared first on <a href="http://www.mogmachine.com">mogmachine</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>These days so much of what we do can be synced and stored in the cloud using DropBox, and only when our computers break do we really appreciate the power and convenience of this.</p>
<p>However for developers using Panic&#8217;s Coda the one elusive need that seems to have fallen off the feature list time and time again is the ability to export and backup your all important &#8216;Sites&#8217; list (and preferences file), which is essentially all of your FTP connections; yours, your clients, your clients clients friends brother, etc.</p>
<p>We have been promised that this will soon be on the feature list, ..but if like me you can&#8217;t wait, here is what you need to do to make this happen NOW.</p>
<h3>FIRSTLY THE PREFERENCES</h3>
<p>I start by quitting Coda (very important) and creating a new pseudo Library folder in my Dropbox to hold preference files I wish to transfer from my Home Library. I called mine &#8216;Coda 2&#8242;.</p>
<p>Inside my new Dropbox Library I create a new Preferences folder and then I then copy my existing Coda Preferences file from ~/Library/Preferences/com.panic.Coda2.plist to ~/Dropbox/Library/Preferences/com.panic.Coda2.plist.</p>
<p>[This symbol '~' refers to your user home folder, in which you may notice as of Lion does not show the 'Library' folder anymore. To get this to show you can do one of 2 things, ...I went into Terminal and typed "chflags nohidden ~/Library" which will take care of that for you. Else you can go to Finder and use the 'Go' option in the top menu bar, ...if you press ALT when clicking on 'Go' the Library will be available to open].</p>
<p>Creating a symbolic link between my new Dropbox enabled Coda preference file and its original location ensures that the changes I make to those preferences, including the state of open documents and windows gets synced to the cloud. </p>
<p>To do this open up Terminal and type the following command:</p>
<p><em>ln -s~/Dropbox/Library/Preferences/com.panic.Coda2.plist ~/Library/Preferences/com.panic.Coda2.plist</em></p>
<h3>NOW THE SITES</h3>
<p>Inside my new Dropbox Library I next create a new &#8216;Application Support&#8217; folder.</p>
<p>I then copy my existing Coda Application Support directory from ~/Library/Application Support/Coda2 to ~/Dropbox/Library/Application Support/Coda.</p>
<p>Creating a symbolic link between my new Dropbox enabled Coda Application Support folder and its original location ensures that additions I make to my plug-ins, modes, and books get synced to the cloud, &#8230;so again in Terminal I type. </p>
<p><em>ln -s~/Dropbox/Library/Application\ Support/Coda2 ~/Library/Application\ Support/Coda2</em></p>
<p>And that&#8217;s it, &#8230;now each time you change configuration of add/edit/delete sites in Coda, it is synced to Dropbox.</p>
<p>If you have any difficulties with this just let me know in the comments below.</p>
<p>The post <a href="http://www.mogmachine.com/how-to-backup-coda-2-sites-and-preferences-in-dropbox/">How To Backup Coda 2 Sites and Preferences in Dropbox</a> appeared first on <a href="http://www.mogmachine.com">mogmachine</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.mogmachine.com/how-to-backup-coda-2-sites-and-preferences-in-dropbox/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Sensi Bikinis</title>
		<link>http://www.mogmachine.com/sensi-bikinis/</link>
		<comments>http://www.mogmachine.com/sensi-bikinis/#comments</comments>
		<pubDate>Wed, 05 Dec 2012 12:10:39 +0000</pubDate>
		<dc:creator>mog</dc:creator>
				<category><![CDATA[commerce]]></category>
		<category><![CDATA[lifestyle]]></category>
		<category><![CDATA[Production]]></category>
		<category><![CDATA[big cartel]]></category>
		<category><![CDATA[bikini]]></category>
		<category><![CDATA[kite]]></category>

		<guid isPermaLink="false">http://www.mogmachine.com/?p=2263</guid>
		<description><![CDATA[<p>Sensi Bikinis are made to stay put.</p><p>The post <a href="http://www.mogmachine.com/sensi-bikinis/">Sensi Bikinis</a> appeared first on <a href="http://www.mogmachine.com">mogmachine</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>Sensi Bikinis are made to stay put. Whether learning a new handle pass or duck diving Teahupoo, our suits keep up with you.</p>
<p>A commerce project I took on as it was using Big Cartel, which is now a system I am able to offer.</p>
<p>The post <a href="http://www.mogmachine.com/sensi-bikinis/">Sensi Bikinis</a> appeared first on <a href="http://www.mogmachine.com">mogmachine</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.mogmachine.com/sensi-bikinis/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Search By Multiple Categories</title>
		<link>http://www.mogmachine.com/wordpress-search-by-multiple-categories/</link>
		<comments>http://www.mogmachine.com/wordpress-search-by-multiple-categories/#comments</comments>
		<pubDate>Sat, 10 Nov 2012 14:48:06 +0000</pubDate>
		<dc:creator>mog</dc:creator>
				<category><![CDATA[Insights]]></category>
		<category><![CDATA[category]]></category>
		<category><![CDATA[multiple category search]]></category>
		<category><![CDATA[search]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.mogmachine.com/?p=2239</guid>
		<description><![CDATA[<p>This is actually quite a surprisingly popular problem, how to modify the Wordpress search to search by multiple categories defined by the user.</p><p>The post <a href="http://www.mogmachine.com/wordpress-search-by-multiple-categories/">WordPress Search By Multiple Categories</a> appeared first on <a href="http://www.mogmachine.com">mogmachine</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>This is actually quite a surprisingly popular problem, how to modify the WordPress search to search by multiple categories defined by the user (see image at base of article for how it looks).</p>
<p>To search by a single category is very simple, you just add this to your search form:</p>
<pre>&lt;input id=&quot;cat&quot; type=&quot;hidden&quot; name=&quot;cat&quot; value=&quot;12&quot; /&gt;</pre>
<p>However to really extend this it would be nice for your users to be able to select a number of categories to filter/search.</p>
<p>You can use the system I will show you to filter anything from custom posts type, dates, authors, ..anything you can specify in wp_query.</p>
<h3>The code:</h3>
<pre>

&lt;form role=&quot;search&quot; method=&quot;post&quot; id=&quot;searchform&quot; action=&quot;&lt;?php bloginfo(&#039;home&#039;); ?&gt;&quot;&gt;

    &lt;label class=&quot;screen-reader-text&quot; for=&quot;s&quot;&gt;Search for:&lt;/label&gt;
    &lt;input type=&quot;text&quot; name=&quot;s&quot; id=&quot;s&quot; &lt;?php if(is_search()) { ?&gt;value=&quot;&lt;?php the_search_query(); } ?&gt;&quot;  /&gt;     
	&lt;h5&gt;Select categories to search&lt;/h5&gt;
	&lt;div class=&quot;scroll_checkboxes&quot;&gt;
				&lt;?php 
		
		//print_r($_POST[&#039;filter_cat&#039;]);

		$categories=  get_categories(&#039;include=89,114,117,122,129,130&#039;); 
  		foreach ($categories as $category) {
  			$checkboxes = &#039;&lt;label&gt;&lt;input type=&quot;checkbox&quot; name=&quot;filter_cat[]&quot; value=&quot;&#039;.$category-&gt;cat_ID.&#039;&quot;&#039;;
  			if (in_array($category-&gt;cat_ID, $_REQUEST[&#039;filter_cat&#039;])) { $checkboxes .= &#039;checked=&quot;checked&quot;&#039;;}
  			$checkboxes .= &#039; /&gt;&#039;;
			$checkboxes .= $category-&gt;cat_name;
			$checkboxes .= &#039;&lt;/label&gt;&#039;;
			echo $checkboxes;
  		}
		//if you want subsections just copy the chunk again
		echo &quot;&lt;h5&gt;Sub Title&lt;/h5&gt;&quot;;
  		$categories=  get_categories(&#039;child_of=7&#039;); 
  		foreach ($categories as $category) {
  			$checkboxes = &#039;&lt;label&gt;&lt;input type=&quot;checkbox&quot; name=&quot;filter_cat[]&quot; value=&quot;&#039;.$category-&gt;cat_ID.&#039;&quot;&#039;;
  			if (in_array($category-&gt;cat_ID, $_REQUEST[&#039;filter_cat&#039;])) { $checkboxes .= &#039;checked=&quot;checked&quot;&#039;;}
  			$checkboxes .= &#039; /&gt;&#039;;
			$checkboxes .= $category-&gt;cat_name;
			$checkboxes .= &#039;&lt;/label&gt;&#039;;
			echo $checkboxes;
  		}  		
		?&gt;
	&lt;/div&gt;
    &lt;input  class=&quot;btn&quot; type=&quot;submit&quot; id=&quot;searchsubmit&quot; value=&quot;Search&quot; /&gt;

&lt;/form&gt;

</pre>
<h3>Explanation</h3>
<p>this code can be placed in search.php, searchform.php or on a unique page, &#8230;I placed it in the main content of search.php and left my default searchform.php alone as the client wanted to maintain a simple sidebar search also.</p>
<p><strong>Line 1:</strong> This is your default WordPress search form, but I have changed the method to &#8216;post&#8217; from &#8216;get&#8217; as I do not want a messy url with the variables I create, but you can leave this as get if you wish.<br />
Also, it should read &#8216;bloginfo(&#8216;home&#8217;)&#8217; but my syntax highlighter is playing up.</p>
<p><strong>Line 2-5:</strong> As normal, with an extra title I inserted to precede the search filter box.</p>
<p><strong>Line 6:</strong> After a number of different tests with radio buttons, multiple select menus, normal select menus, the multiple check box in a scrolling pane seemed to be the best and most useable solution, but you can change this as you wish using the same concept. This is why it is surround in this div, and has the following CSS in the style.css file:</p>
<pre>
.scroll_checkboxes {
height: 260px;
padding: 5px;
overflow: auto;
border: 1px solid #CCC;
}
</pre>
<p><strong>Line 9:</strong> This is a debug check so you can see the category ID&#8217;s being passed should you need to.</p>
<p><strong>Line 11-19:</strong> This is where the magic happens. Using the get_categories() function I query the WP cats with whatever parameters I wish,in this case a list of specific cats, but as you can see on Line 22, I later repeat this for child categories.</p>
<p>I then loop through these results creating a label encapsulated checkbox input with the name filter_cat[] which ensures checked box values are all placed in the same filter_cat array.</p>
<p>There is also a check in there using REQUEST (so will work if your form is get or post) to see if this box has been selected in the previous query, to ensure that it stays checked.</p>
<p><strong>Line 21-30:</strong> As you see from the image at the bottom, I split my list with sub-headers, which gave me maximum control at my clients wish, so I have repeated the section with different parameters for get_categories, but nothing else has changed.</p>
<p><strong>Line 32-35:</strong> Close the div and close the search form as normal.</p>
<p>Next, add this into your search.php file, just above the loop as this will extract your array of category ID&#8217;s and add tem to the search query:</p>
<pre>
global $wp_query;
foreach($_POST['filter_cat'] as $fcat){$fcat_list .= $fcat . ",";}

query_posts(
	array_merge(
		array( 'cat' => $fcat_list ),
		$wp_query->query
	)
);
</pre>
<p><strong>Line 2:</strong> I cycle though the $_POST['filter_cat'] array and add the ID&#8217;s to a comma separated list.</p>
<p><strong>Line 4-9:</strong> I add the list of cats to the $args of the query. This is the point at which you could in theory add further modification if you had created checkboxes to filter by another paramaters.</p>
<h3>Finally</h3>
<p>That&#8217;s it, &#8230;Wordpress search the way it should be witha few usability extras. To see what it looks like check the image out below. Alas I cannot show you how it works in person as it is on a closed client site.</p>
<p>Good Luck</p>
<p><img class="alignnone size-medium wp-image-2240" title="wordpress-category-search" src="http://www.mogmachine.com/wp-content/uploads/2012/11/wordpress-category-search-590x424.png" alt="" width="590" height="424" /></p>
<p>The post <a href="http://www.mogmachine.com/wordpress-search-by-multiple-categories/">WordPress Search By Multiple Categories</a> appeared first on <a href="http://www.mogmachine.com">mogmachine</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.mogmachine.com/wordpress-search-by-multiple-categories/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Cardbored</title>
		<link>http://www.mogmachine.com/cardbored/</link>
		<comments>http://www.mogmachine.com/cardbored/#comments</comments>
		<pubDate>Wed, 27 Jun 2012 09:29:45 +0000</pubDate>
		<dc:creator>mog</dc:creator>
				<category><![CDATA[commerce]]></category>
		<category><![CDATA[Production]]></category>
		<category><![CDATA[shopp]]></category>

		<guid isPermaLink="false">http://www.mogmachine.com/?p=1966</guid>
		<description><![CDATA[<p>Choosing the right greetings card could not be easier!</p><p>The post <a href="http://www.mogmachine.com/cardbored/">Cardbored</a> appeared first on <a href="http://www.mogmachine.com">mogmachine</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>Choosing the right greetings card could not be easier!</p>
<p>A branding and commerce project using WordPress and Shopp.</p>
<p>The post <a href="http://www.mogmachine.com/cardbored/">Cardbored</a> appeared first on <a href="http://www.mogmachine.com">mogmachine</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.mogmachine.com/cardbored/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>P Wilkinson Containers</title>
		<link>http://www.mogmachine.com/p-wilkinson-containers/</link>
		<comments>http://www.mogmachine.com/p-wilkinson-containers/#comments</comments>
		<pubDate>Wed, 27 Jun 2012 09:29:28 +0000</pubDate>
		<dc:creator>mog</dc:creator>
				<category><![CDATA[business]]></category>
		<category><![CDATA[Production]]></category>
		<category><![CDATA[manufacturing]]></category>
		<category><![CDATA[wholesale]]></category>

		<guid isPermaLink="false">http://www.mogmachine.com/?p=1964</guid>
		<description><![CDATA[<p>Metal &#038; Plastic Containers for industry.</p><p>The post <a href="http://www.mogmachine.com/p-wilkinson-containers/">P Wilkinson Containers</a> appeared first on <a href="http://www.mogmachine.com">mogmachine</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>Metal &amp; Plastic Containers for industry.</p>
<p>Business portfolio site using WordPress</p>
<p>The post <a href="http://www.mogmachine.com/p-wilkinson-containers/">P Wilkinson Containers</a> appeared first on <a href="http://www.mogmachine.com">mogmachine</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.mogmachine.com/p-wilkinson-containers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>William Say</title>
		<link>http://www.mogmachine.com/william-say/</link>
		<comments>http://www.mogmachine.com/william-say/#comments</comments>
		<pubDate>Wed, 27 Jun 2012 09:29:08 +0000</pubDate>
		<dc:creator>mog</dc:creator>
				<category><![CDATA[business]]></category>
		<category><![CDATA[Production]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[manufacturing]]></category>
		<category><![CDATA[wholesale]]></category>

		<guid isPermaLink="false">http://www.mogmachine.com/?p=1962</guid>
		<description><![CDATA[<p>London Tinbox and Canister Manufacturers.</p><p>The post <a href="http://www.mogmachine.com/william-say/">William Say</a> appeared first on <a href="http://www.mogmachine.com">mogmachine</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>London Tinbox and Canister Manufacturers.<br />
Website designed by The House London and animated using CSS3 and JS. No Flash.</p>
<p>The post <a href="http://www.mogmachine.com/william-say/">William Say</a> appeared first on <a href="http://www.mogmachine.com">mogmachine</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.mogmachine.com/william-say/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Gentleman&#8217;s Journal</title>
		<link>http://www.mogmachine.com/the-gentlemans-journal/</link>
		<comments>http://www.mogmachine.com/the-gentlemans-journal/#comments</comments>
		<pubDate>Wed, 27 Jun 2012 09:28:42 +0000</pubDate>
		<dc:creator>mog</dc:creator>
				<category><![CDATA[business]]></category>
		<category><![CDATA[magazine]]></category>
		<category><![CDATA[Production]]></category>
		<category><![CDATA[products]]></category>

		<guid isPermaLink="false">http://www.mogmachine.com/?p=1960</guid>
		<description><![CDATA[<p>The Lifestyle and Grooming Magazine for Gentlemen.</p><p>The post <a href="http://www.mogmachine.com/the-gentlemans-journal/">The Gentleman&#8217;s Journal</a> appeared first on <a href="http://www.mogmachine.com">mogmachine</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>The Lifestyle and Grooming Magazine for Gentlemen.</p>
<p>WordPress complete build and social strategy.</p>
<p>The post <a href="http://www.mogmachine.com/the-gentlemans-journal/">The Gentleman&#8217;s Journal</a> appeared first on <a href="http://www.mogmachine.com">mogmachine</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.mogmachine.com/the-gentlemans-journal/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Harry Elliot</title>
		<link>http://www.mogmachine.com/harry-elliot/</link>
		<comments>http://www.mogmachine.com/harry-elliot/#comments</comments>
		<pubDate>Wed, 27 Jun 2012 09:28:06 +0000</pubDate>
		<dc:creator>mog</dc:creator>
				<category><![CDATA[business]]></category>
		<category><![CDATA[commerce]]></category>
		<category><![CDATA[Production]]></category>
		<category><![CDATA[shopp]]></category>

		<guid isPermaLink="false">http://www.mogmachine.com/?p=1958</guid>
		<description><![CDATA[<p>Luxury Swimwear for Men.</p><p>The post <a href="http://www.mogmachine.com/harry-elliot/">Harry Elliot</a> appeared first on <a href="http://www.mogmachine.com">mogmachine</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>Luxury Swimwear for Men.</p>
<p>WordPress site with Shopp commerce using SagePay and PayPal integration.</p>
<p>The post <a href="http://www.mogmachine.com/harry-elliot/">Harry Elliot</a> appeared first on <a href="http://www.mogmachine.com">mogmachine</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.mogmachine.com/harry-elliot/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>LocalAid</title>
		<link>http://www.mogmachine.com/localaid/</link>
		<comments>http://www.mogmachine.com/localaid/#comments</comments>
		<pubDate>Wed, 27 Jun 2012 09:27:48 +0000</pubDate>
		<dc:creator>mog</dc:creator>
				<category><![CDATA[business]]></category>
		<category><![CDATA[Production]]></category>
		<category><![CDATA[africa]]></category>
		<category><![CDATA[charity]]></category>

		<guid isPermaLink="false">http://www.mogmachine.com/?p=1956</guid>
		<description><![CDATA[<p>A non-profit organisation which supports vulnerable children of Kenya.</p><p>The post <a href="http://www.mogmachine.com/localaid/">LocalAid</a> appeared first on <a href="http://www.mogmachine.com">mogmachine</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>LocalAid is a non-profit organisation which supports marginalized communities and vulnerable children of Kenya.</p>
<p>Website built using WordPress, and then management of sponsorship technical strategy using WordPress and Dropbox + social media integration.</p>
<p>The post <a href="http://www.mogmachine.com/localaid/">LocalAid</a> appeared first on <a href="http://www.mogmachine.com">mogmachine</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.mogmachine.com/localaid/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic page generated in 1.202 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2013-05-23 21:01:59 -->
