<?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>Sweet-Apple</title>
	<atom:link href="http://www.sweet-apple.co.uk/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.sweet-apple.co.uk</link>
	<description>Mac support, web design and development in Bath, Bristol and Wiltshire</description>
	<lastBuildDate>Tue, 21 May 2013 08:03:52 +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>MacBook Air hard drive too small? Fit a bigger one!</title>
		<link>http://www.sweet-apple.co.uk/macbook-air-hard-drive-too-small-fit-a-bigger-one/</link>
		<comments>http://www.sweet-apple.co.uk/macbook-air-hard-drive-too-small-fit-a-bigger-one/#comments</comments>
		<pubDate>Wed, 01 May 2013 13:37:48 +0000</pubDate>
		<dc:creator>Clive Sweeting</dc:creator>
				<category><![CDATA[MacBook]]></category>

		<guid isPermaLink="false">http://www.sweet-apple.co.uk/?p=1279</guid>
		<description><![CDATA[One of the biggest problems with MacBook Air is the small hard drive they ship with. Solid State Hard drives are fantastic, but you&#8217;ll be surprised how quickly you manage to fill up even a 250GB SSD if you&#8217;ve got &#8230; <a href="http://www.sweet-apple.co.uk/macbook-air-hard-drive-too-small-fit-a-bigger-one/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>One of the biggest problems with MacBook Air is the small hard drive they ship with. Solid State Hard drives are fantastic, but you&#8217;ll be surprised how quickly you manage to fill up even a 250GB SSD if you&#8217;ve got a lot of photos, videos or music.</p>
<p>Unfortunately the Airs don&#8217;t have a standard 2.5&#8243; hard drive, so finding a suitable SSD at sensible cost can be an expensive problem to solve. Other World Computing are one of the few companies that sell them and they&#8217;re US based. It&#8217;s fine, they ship internationally, but it looks like our friends in the UK at The Bookyard also sell them, and they&#8217;re often less expensive than shipping from the US once VAT and duties are factored in.</p>
<p>One of my customers needed a 480GB SSD for her 2011 MacBook Air, fortunately they stock them. Problem solved. If you also want one, click below&#8230;</p>
<p><a href="http://www.thebookyard.com/product.php?ref=36&amp;products_id=10550&amp;affiliate_banner_id=1" target="_blank" rel="no-follow">OWC MacBook Air Aura Pro 6G SSD + Envoy Upgrade Kit-480GB for MacBook 2010/11</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sweet-apple.co.uk/macbook-air-hard-drive-too-small-fit-a-bigger-one/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adding custom field data into WordPress menus</title>
		<link>http://www.sweet-apple.co.uk/adding-custom-field-data-into-wordpress-menus/</link>
		<comments>http://www.sweet-apple.co.uk/adding-custom-field-data-into-wordpress-menus/#comments</comments>
		<pubDate>Mon, 01 Apr 2013 13:07:11 +0000</pubDate>
		<dc:creator>Clive Sweeting</dc:creator>
				<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.sweet-apple.co.uk/?p=1268</guid>
		<description><![CDATA[One of the problems almost everyone has with developing CMS driven websites is generating navigation menus; particularly pretty or heavily customised menus that can be easily updated by the end user. WordPress (like Drupal) has a really excellent menu builder &#8230; <a href="http://www.sweet-apple.co.uk/adding-custom-field-data-into-wordpress-menus/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>One of the problems almost everyone has with developing CMS driven websites is generating navigation menus; particularly pretty or heavily customised menus that can be easily updated by the end user.</p>
<p>WordPress (like Drupal) has a really excellent menu builder tool that you can use to easily create hierachical menus that you assign to &#8220;slots&#8221; in your theme. But what happens if you need to modify the standard html output of the menu? For example to pull in some information about the menu item&#8217;s target, such as custom field data about the Page or Post. You make a custom Walker&#8230;</p>
<p>Subclass <strong>Walker_Nav_Menu</strong>, include it in your theme&#8217;s functions.php file, and duplicate the start_el() method. If you look at the properties of the $item Object passed into the method, you&#8217;ll find that <strong>$item-&gt;object_id</strong> is particularly useful, as it refers to the WordPress Post/Page/CPT that this menu item is linked to. Now you&#8217;re in business and can just query for any post_meta information you want to inject into the menu html.</p>
<p>In the example below I added the css-id custom field data from the &#8220;target&#8221; to the list item&#8217;s id property. This means I can more reliably add bespoke background images and css styles to my uber-cool menus without having to worry about people deleting the initial menu entry I created. Which is nice for me, great for my customers, and even better for their customers&#8230;</p>
<pre class="brush: plain; title: ; notranslate">

function start_el( &amp;$output, $item, $depth = 0, $args = array(), $id = 0 )
 {

//snip

$id = apply_filters( 'nav_menu_item_id', 'menu-item-' . $item-&gt;ID, $item, $args );

//Add any custom ID added to the object...
 $css_id = ( get_post_meta($item-&gt;object_id, 'css-id', true) ) ? get_post_meta($item-&gt;object_id, 'css-id', true) : null;
 $id = ( $css_id ) ? $id . &quot; &quot; . $css_id : $id ;

$id = $id ? ' id=&quot;' . esc_attr( $id ) . '&quot;' : '';
//snip
}
</pre>
<p><em>Need a freelance web developer near Bath to turn your web designs into reality? We build websites for small businesses, design agencies and freelance designers, quickly, efficiently and cost-effectively. Don&#8217;t hesitate to give us a bell on 01225 3019162. We&#8217;re sure we can help!</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sweet-apple.co.uk/adding-custom-field-data-into-wordpress-menus/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New MacBooks featuring USB3 &#8211; where now for Thunderbolt?</title>
		<link>http://www.sweet-apple.co.uk/new-macbooks-featuring-usb3-where-now-for-thunderbolt/</link>
		<comments>http://www.sweet-apple.co.uk/new-macbooks-featuring-usb3-where-now-for-thunderbolt/#comments</comments>
		<pubDate>Tue, 12 Jun 2012 08:08:01 +0000</pubDate>
		<dc:creator>Clive Sweeting</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[MacBook]]></category>

		<guid isPermaLink="false">http://www.sweet-apple.co.uk/?p=1240</guid>
		<description><![CDATA[As widely anticipated, Apple have released updated MacBooks and MacBook Pros. Price points have generally stayed the same as before, but we&#8217;ve got some nice speed bumps and new features. Foremost among these is the introduction of USB3&#8230; Where now &#8230; <a href="http://www.sweet-apple.co.uk/new-macbooks-featuring-usb3-where-now-for-thunderbolt/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>As widely anticipated, Apple have released updated MacBooks and MacBook Pros. Price points have generally stayed the same as before, but we&#8217;ve got some nice speed bumps and new features. Foremost among these is the introduction of USB3&#8230;</p>
<h2>Where now for Thunderbolt?</h2>
<p>It&#8217;s nearly 18 months since Apple first introduced Thunderbolt to the great unwashed, with the promise of unheard of data transfer rates and simplified cable managemen. I was one of those who upgraded to a Thunderbolt MacBook Pro and was positively salivating at the prospect of ultra fast backups, Thunderbolt Target Disk Mode and a slew of Thunderbolt adapters to work with E-SATA, USB3 and other devices. And what have we got? Precisely sod all in the consumer space (if you ignore a few hugely overpriced external Thunderbolt drives and lots of &#8220;vapourware&#8221;).</p>
<p>USB3 might not be technically as clever as Thunderbolt, but there are already cheap and widely available devices &#8211; you can get a 500GB external backup drive for around the same cost as a Thunderbolt cable! &#8211; which I think pretty much consigns Thunderbolt to the dustbin of &#8220;useful but too pricey technologies.&#8221; Sure it&#8217;ll find a niche in high-end video, but that niche will keep prices beyond the reach of mere mortals.</p>
<h2>Which MacBook should I buy?</h2>
<p>To be perfectly honest, I don&#8217;t think the landscape has changed that much. I still think the <a href="http://clk.tradedoubler.com/click?p=2554&amp;a=1152981&amp;g=17981984&amp;url=http://store.apple.com/uk_smb_67752/go/macbookpro">13&#8243; MacBook Pro</a> is the sweet spot. The <a href="http://clk.tradedoubler.com/click?p=2554&amp;a=1152981&amp;g=17981984&amp;url=http://store.apple.com/uk_smb_67752/go/macbookair">MacBook Air</a> is very light, very thin, and very sexy. But if you want something light and thin, get an iPad for half the cost. The extra 1.5lbs the MacBook  Pro weighs gives you get a more robust, faster and more expandable laptop.</p>
<p>The <a href="http://clk.tradedoubler.com/click?p=2554&amp;a=1152981&amp;g=17981984&amp;url=http://store.apple.com/uk_smb_67752/go/macbookpro">MacBook Pro with Retina Display</a> leaves me something in a quandary. My instinctively reaction is &#8220;that must look awesome&#8221; followed shortly by &#8220;will my Apps look rubbish until I upgrade to Retina ready graphics&#8221;. Not have seen the screen yet, I can&#8217;t give an informed view.</p>
<h2>Cheap MacBooks if you&#8217;re at school or higher education</h2>
<p>Just remember if you&#8217;re at school or studying in higher education, you can save a reasonable amount of money by visiting the <a href="http://clk.tradedoubler.com/click?p=2554&amp;a=1152981&amp;g=17981984&amp;url=http://store.apple.com/uk-edu/go/home">Apple Store for Education</a>. The <a href="http://clk.tradedoubler.com/click?p=2554&amp;a=1152981&amp;g=17981984&amp;url=http://store.apple.com/uk-edu/go/macbookpro">MacBook Pro&#8217;s</a> have some quite decent discounts, with the 13&#8243; model starting at £940 inc VAT and the 15&#8243; model starting at £1409&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sweet-apple.co.uk/new-macbooks-featuring-usb3-where-now-for-thunderbolt/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creating routes for custom WordPress post types&#8230;</title>
		<link>http://www.sweet-apple.co.uk/creating-routes-for-custom-wordpress-post-types/</link>
		<comments>http://www.sweet-apple.co.uk/creating-routes-for-custom-wordpress-post-types/#comments</comments>
		<pubDate>Tue, 27 Mar 2012 10:49:59 +0000</pubDate>
		<dc:creator>Clive Sweeting</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Wordpress Custom Themes]]></category>

		<guid isPermaLink="false">http://www.sweet-apple.co.uk/?p=1235</guid>
		<description><![CDATA[When you&#8217;re creating a somewhat more complex WordPress website, you might want to create some custom routes for any custom post types that you create. Whether this is to maximise SEO or just make the URLs a bit prettier, it&#8217;s &#8230; <a href="http://www.sweet-apple.co.uk/creating-routes-for-custom-wordpress-post-types/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>When you&#8217;re creating a somewhat more complex WordPress website, you might want to create some custom routes for any custom post types that you create. Whether this is to maximise SEO or just make the URLs a bit prettier, it&#8217;s pretty simple to do. The function below added to your theme function.php file illustrates the general idea&#8230;</p>
<pre class="brush: php; title: ; notranslate">
function sweetapple_rewrites_init(){

    add_rewrite_rule(
        'houses/([^/]*)/([^/]*)/?',
        'index.php?pagename=houses&amp;amp;house_search_type=$matches[1]&amp;amp;house_search_query=$matches[2]',
        'top');
    //
    add_rewrite_tag('%house_search_type%','([^&amp;amp;]+)');
    add_rewrite_tag('%house_search_query%','([^&amp;amp;]+)');
}
add_action( 'init', 'sweetapple_rewrites_init' );
</pre>
<p><em>Looking for an experienced <a href="/web-design-and-development/freelance-web-developer-bath-bristol-wiltshire/">freelance WordPress developer</a> to convert your designs into a custom theme? Need help customising an existing theme, theme framework, or creating a WordPress child-theme? Please give us a call on 01225 309162.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sweet-apple.co.uk/creating-routes-for-custom-wordpress-post-types/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Create custom Catalog navigation menus in Magento&#8230;</title>
		<link>http://www.sweet-apple.co.uk/create-custom-catalog-navigation-menus-in-magento/</link>
		<comments>http://www.sweet-apple.co.uk/create-custom-catalog-navigation-menus-in-magento/#comments</comments>
		<pubDate>Tue, 27 Mar 2012 10:31:26 +0000</pubDate>
		<dc:creator>Clive Sweeting</dc:creator>
				<category><![CDATA[Magento]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Magento Themes]]></category>
		<category><![CDATA[Magneto Theme Development]]></category>
		<category><![CDATA[Web design]]></category>

		<guid isPermaLink="false">http://www.sweet-apple.co.uk/?p=1231</guid>
		<description><![CDATA[Out of the box, Magento will happily give you a quite nice navigation menus of your Catalog Categories, including drop-downs for sub-categories. You also get a number of utility classes added to the individual list items, such as &#8216;level0 nav-6 &#8230; <a href="http://www.sweet-apple.co.uk/create-custom-catalog-navigation-menus-in-magento/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>Out of the box, Magento will happily give you a quite nice navigation menus of your Catalog Categories, including drop-downs for sub-categories.</p>
<p>You also get a number of utility classes added to the individual list items, such as &#8216;level0 nav-6 level-top&#8217; which enable you to do some tweaking. However the &#8216;nav-6&#8242; class unfortunately just refers to the position in the menu; so if you rearrange your Catalog categories, the classes changes. This makes it unsuitable for adding Category specific styles to your main navigation. So what can you do if you want to be able to add specific styles to individual Categories?</p>
<p>If you look in the method <strong>Mage_Catalog_Block_Navigation::_renderCategoryMenuItemHtml()</strong> you&#8217;ll find the code that actually renders the menu item. You&#8217;ll also find an array called $classes defined. The code below will add cat-13 to the menu item representing the Category with an ID of 13. Obviously I don&#8217;t advocate editing the core file, so make your own /local or override it in your own module&#8230;</p>
<pre class="brush: php; title: ; notranslate">
$classes[] = &quot;cat-&quot; . $category-&gt;getEntityId();
</pre>
<p>You could easily extend this methodology to enable the Store Admin to add custom classes or css to the navigation menu by adding a custom field in the Category Admin interface. But for now your front-end developer can now easily target individual list items as they see fit&#8230;</p>
<p><em>Looking for a <a href="/web-design-and-development/magento-ecommerce/">freelance Magento developer</a>? Give Sweet-Apple a buzz on 01225 309162 -we&#8217;d love to help you get your <a href="/web-design-and-development/magento-ecommerce/">e-commerce website</a> started&#8230;</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sweet-apple.co.uk/create-custom-catalog-navigation-menus-in-magento/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New website completed for Devizes based bathroom designers</title>
		<link>http://www.sweet-apple.co.uk/new-website-completed-for-devizes-based-bathroom-designers/</link>
		<comments>http://www.sweet-apple.co.uk/new-website-completed-for-devizes-based-bathroom-designers/#comments</comments>
		<pubDate>Mon, 16 Jan 2012 14:27:44 +0000</pubDate>
		<dc:creator>Clive Sweeting</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[CSS3]]></category>
		<category><![CDATA[Web design]]></category>
		<category><![CDATA[Wordpress Custom Themes]]></category>

		<guid isPermaLink="false">http://www.sweet-apple.co.uk/?p=1219</guid>
		<description><![CDATA[We recently been working with Aqualis Bathrooms Ltd. Based in Devizes, Wiltshire, but working all along the M4 corridor, London and beyond,  they specialise in the design and installation of luxury bathrooms, wetrooms and stone floors. Like many companies, they&#8217;ve &#8230; <a href="http://www.sweet-apple.co.uk/new-website-completed-for-devizes-based-bathroom-designers/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>We recently been working with <a title="Aqualis of Devizes. Bathrooms designers" href="http://www.aqualisbathrooms.co.uk/" target="_blank">Aqualis Bathrooms Ltd</a>. Based in Devizes, Wiltshire, but working all along the M4 corridor, London and beyond,  they specialise in the <a href="http://www.aqualisbathrooms.co.uk/luxury-bathrooms/" target="_blank">design and installation of luxury bathrooms,</a> wetrooms and <a href="http://www.aqualisbathrooms.co.uk/stone-flooring/" target="_blank">stone floors</a>. Like many companies, they&#8217;ve organically grown over the years and now find that their word-of-mouth reputation for excellence has spread beyond their traditional core of home-owning customers, through to architects and property developers.</p>
<p>We provided copywriting, design and development services. WordPress was used as the CMS, which enabled us to quickly add media galleries, refresh content quickly and easily, plus provide the client with a platform to let them rapidly add search engine friendly content when needed.</p>
<p><a href="http://www.aqualisbathrooms.co.uk/" target="_blank"><img class="alignnone size-full wp-image-1221" title="Designers of luxury bathrooms, wetrooms and stone floors, Devizes, Wiltshire" src="http://www.sweet-apple.co.uk/wp-content/uploads/2012/01/luxury-bathrooms-wiltshire.jpg" alt="Designers of luxury bathrooms, wetrooms and stone floors, Devizes, Wiltshire" width="600" height="1189" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sweet-apple.co.uk/new-website-completed-for-devizes-based-bathroom-designers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Quickly create colour themes for Products, Categories and CMS pages in Magento&#8230;</title>
		<link>http://www.sweet-apple.co.uk/quickly-create-colour-themes-for-products-categories-and-cms-pages-in-magento/</link>
		<comments>http://www.sweet-apple.co.uk/quickly-create-colour-themes-for-products-categories-and-cms-pages-in-magento/#comments</comments>
		<pubDate>Thu, 05 Jan 2012 16:45:07 +0000</pubDate>
		<dc:creator>Clive Sweeting</dc:creator>
				<category><![CDATA[Magento]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Magento Themes]]></category>

		<guid isPermaLink="false">http://www.sweet-apple.co.uk/?p=1213</guid>
		<description><![CDATA[It doesn&#8217;t seem to matter whether we&#8217;re working as a freelance web developer for companies in Bath, Bristol, Wiltshire or Timbuktu, at some point they will give us a design that has colour variations across groups of pages. Some pages &#8230; <a href="http://www.sweet-apple.co.uk/quickly-create-colour-themes-for-products-categories-and-cms-pages-in-magento/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>It doesn&#8217;t seem to matter whether we&#8217;re working as a <a href="/web-design-and-development/freelance-web-developer-bath-bristol-wiltshire/">freelance web developer</a> for companies in Bath, Bristol, Wiltshire or Timbuktu, at some point they will give us a design that has colour variations across groups of pages. Some pages will use purple to highlight text, other will be in orange, others will use a different font, variable width columns, the list goes on. So how can you deal with this without having utterly impenetrable CSS files?</p>
<p>In Magento* it&#8217;s easy enough! Simple add a snippet to the Layout Update XML.</p>
<pre class="brush: xml; title: ; notranslate">
&lt;reference name=&quot;root&quot;&gt;
     &lt;action method=&quot;addBodyClass&quot;&gt;&lt;className&gt;purple&lt;/className&gt;&lt;/action&gt;
&lt;/reference&gt;
</pre>
<p>Essentially it just calls the method Mage_Page_Block_Html::addBodyClass() and slaps the className onto the &lt;body&gt; tag, letting you then create css selectors like .purple .someotherselector.</p>
<p>If you&#8217;re feeling really clever you could probably programmatically add a class derived from the value of a Product attribute, but that will have to wait for another day&#8230;</p>
<p><em>Looking for a friendly <a href="/web-design-and-development/magento-ecommerce/">freelance Magento developer</a>? Need some help getting your designs turned into working websites, cost effectively? Why not give us a call on 01225 309162 &#8211; we&#8217;d be delighted to help&#8230;</em></p>
<p>*I know, I know, not often you hear &#8220;Magento&#8221; and &#8220;easy&#8221; in the same sentance.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sweet-apple.co.uk/quickly-create-colour-themes-for-products-categories-and-cms-pages-in-magento/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Quickly find the id of all Magento categories..</title>
		<link>http://www.sweet-apple.co.uk/quickly-find-the-id-of-all-magento-categories/</link>
		<comments>http://www.sweet-apple.co.uk/quickly-find-the-id-of-all-magento-categories/#comments</comments>
		<pubDate>Sun, 25 Dec 2011 11:45:53 +0000</pubDate>
		<dc:creator>Clive Sweeting</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.sweet-apple.co.uk/?p=1209</guid>
		<description><![CDATA[When developing a Magento powered e-commerce, you will almost inevitably have to import product data from a spreadsheet provided by your customer. And you almost certainly will need to convert the text based Categories they&#8217;ve used in the spreadsheet into &#8230; <a href="http://www.sweet-apple.co.uk/quickly-find-the-id-of-all-magento-categories/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>When developing a Magento powered e-commerce, you will almost inevitably have to import product data from a spreadsheet provided by your customer. And you almost certainly will need to convert the text based Categories they&#8217;ve used in the spreadsheet into the entity_id Magento uses for categories. So first of all create all your required product categories. Then what? Yes, you can click into every category in the Magento admin and patiently write down every ID, but that&#8217;s boring right? So what to do?</p>
<p>Create a new .php file somewhere in the root folder and drop the following code in.</p>
<pre class="brush: php; title: ; notranslate">
define('MAGENTO', realpath(dirname(__FILE__)));
require_once MAGENTO . '/app/Mage.php';
umask(0);
Mage::app()-&gt;setCurrentStore(Mage_Core_Model_App::ADMIN_STORE_ID);
$model = Mage::getModel('catalog/category');
$categories = $model-&gt;getCollection();
$categories-&gt;addAttributeToSelect('name');
foreach ($categories as $category) {
    print $category-&gt;getEntityId() . &quot; &quot; . $category-&gt;getName() . PHP_EOL;
}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.sweet-apple.co.uk/quickly-find-the-id-of-all-magento-categories/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cheap replacement for a Mac Superdrive</title>
		<link>http://www.sweet-apple.co.uk/cheap-replacement-for-a-mac-superdrive/</link>
		<comments>http://www.sweet-apple.co.uk/cheap-replacement-for-a-mac-superdrive/#comments</comments>
		<pubDate>Fri, 14 Oct 2011 15:38:00 +0000</pubDate>
		<dc:creator>Clive Sweeting</dc:creator>
				<category><![CDATA[Troubleshooting]]></category>

		<guid isPermaLink="false">http://www.sweet-apple.co.uk/?p=1205</guid>
		<description><![CDATA[If you find that your Mac&#8217;s Superdrive has stopped working, or you&#8217;ve replaced your internal Superdrive to fit a solid-state hard drive and need a cheap way to get a working CD and DVD reader or recorder, your options are &#8230; <a href="http://www.sweet-apple.co.uk/cheap-replacement-for-a-mac-superdrive/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>If you find that your Mac&#8217;s Superdrive has stopped working, or you&#8217;ve replaced your internal Superdrive to fit a solid-state hard drive and need a cheap way to get a working CD and DVD reader or recorder, your options are a bit limited.</p>
<p>However I&#8217;ve found these <a href="http://www.amazon.co.uk/gp/product/B0041XKCN2/ref=as_li_ss_tl?ie=UTF8&amp;tag=sweetapple-21&amp;linkCode=as2&amp;camp=1634&amp;creative=19450&amp;creativeASIN=B0041XKCN2" target="_blank">Samsung External USB DVD-Writers</a> to be reliable, inexpensive and work with OS X 10.5, 10.6 and 10.7.</p>
<p><em>P.S. The only trouble you&#8217;ll have is getting it to work with Apple&#8217;s DVD Player application. However <a href="http://hints.macworld.com/article.php?story=20100208120847220">this hint worked for me</a> beautifully.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sweet-apple.co.uk/cheap-replacement-for-a-mac-superdrive/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cheap Dell P and U series monitors as good as Apple Cinema displays</title>
		<link>http://www.sweet-apple.co.uk/cheap-dell-p-and-u-series-monitors-as-good-as-apple-cinema-displays/</link>
		<comments>http://www.sweet-apple.co.uk/cheap-dell-p-and-u-series-monitors-as-good-as-apple-cinema-displays/#comments</comments>
		<pubDate>Sat, 03 Sep 2011 07:38:15 +0000</pubDate>
		<dc:creator>Clive Sweeting</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Bargains]]></category>

		<guid isPermaLink="false">http://www.sweet-apple.co.uk/?p=1202</guid>
		<description><![CDATA[Whilst I&#8217;d love to be able to afford one of Apple&#8217;s 27&#8243; Cinema Displays, the truth is they&#8217;re hugely expensive in comparison to a 22, 23 or 24&#8243; quality display from Dell or Samsung. About 6 months ago I bought &#8230; <a href="http://www.sweet-apple.co.uk/cheap-dell-p-and-u-series-monitors-as-good-as-apple-cinema-displays/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>Whilst I&#8217;d love to be able to afford one of <a href="http://www.amazon.co.uk/s?ie=UTF8&amp;redirect=true&amp;ref_=nb_sb_noss&amp;rh=n%3A340831031%2Cn%3A%21340832031%2Cn%3A428651031%2Ck%3Aapple%20cinema&amp;field-keywords=apple%20cinema&amp;url=node%3D428651031&amp;ajr=0#?_encoding=UTF8&amp;tag=sweetapple-21&amp;linkCode=ur2&amp;camp=1634&amp;creative=19450" target="_blank" rel="nofollow">Apple&#8217;s 27&#8243; Cinema Displays</a>, the truth is they&#8217;re hugely expensive in comparison to a 22, 23 or 24&#8243; quality display from <a href="http://www.amazon.co.uk/s?ie=UTF8&amp;x=0&amp;ref_=nb_sb_noss&amp;y=0&amp;field-keywords=Dell%20monitor&amp;url=search-alias%3Dcomputers#?_encoding=UTF8&amp;tag=sweetapple-21&amp;linkCode=ur2&amp;camp=1634&amp;creative=19450" target="_blank" rel="nofollow">Dell</a> or <a href="http://www.amazon.co.uk/s?ie=UTF8&amp;x=0&amp;ref_=nb_sb_noss&amp;y=0&amp;field-keywords=Dell%20monitor&amp;url=search-alias%3Dcomputers#?url=search-alias=computers?_encoding=UTF8&amp;tag=sweetapple-21&amp;linkCode=ur2&amp;camp=1634&amp;creative=19450" target="_blank" rel="nofollow">Samsung</a>. About 6 months ago I bought a <a href="http://www.amazon.co.uk/gp/product/B0043M5R4A/ref=as_li_ss_tl?ie=UTF8&amp;tag=sweetapple-21&amp;linkCode=as2&amp;camp=1634&amp;creative=19450&amp;creativeASIN=B0043M5R4A" target="_blank" rel="nofollow">Dell P2311H 23&#8243; monitor</a> and am ecstatic with it. LED backlit, tilt, swivel, rotate and crucially for me a height adjustable stand, it was brilliant value.</p>
<p>As of this moment there are some cracking deals at Amazon. Dell have two ranges that I recommend to my customers &#8211; the <a href="http://www.amazon.co.uk/s?ie=UTF8&amp;redirect=true&amp;ref_=sr_ex_n_0&amp;keywords=dell%20monitor&amp;qid=1315034576&amp;rh=i%3Aaps%2Ck%3Adell%20monitor#?url=search-alias=aps?_encoding=UTF8&amp;tag=sweetapple-21&amp;linkCode=ur2&amp;camp=1634&amp;creative=19450" target="_blank" rel="nofollow">Dell Professional P monitors</a> and <a href="http://www.amazon.co.uk/s?ie=UTF8&amp;x=0&amp;ref_=nb_sb_noss&amp;y=0&amp;field-keywords=Dell%20U%20monitor&amp;url=search-alias%3Dcomputers#?_encoding=UTF8&amp;tag=sweetapple-21&amp;linkCode=ur2&amp;camp=1634&amp;creative=19450" target="_blank" rel="nofollow">Dell Ultrasharp U series</a>. The main difference is the U series use an IPS panel, which offers slightly wider viewing angles. To be honest the difference isn&#8217;t that great, but if you can get a U series display for slightly more I would spend the extra money.</p>
<p>P.S. If you really want to splash out the <a href="http://www.amazon.co.uk/gp/product/B003A4H17S/ref=as_li_ss_tl?ie=UTF8&amp;tag=sweetapple-21&amp;linkCode=as2&amp;camp=1634&amp;creative=19450&amp;creativeASIN=B003A4H17S" target="_blank" rel="nofollow">Dell U2711 Ultrasharp 27&#8243; Monitor</a> is just as good as the Apple display, although obviously slightly less &#8216;sexy.&#8217;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sweet-apple.co.uk/cheap-dell-p-and-u-series-monitors-as-good-as-apple-cinema-displays/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/

Minified using disk: basic
Page Caching using disk: enhanced
Database Caching using disk: basic
Object Caching 677/699 objects using disk: basic

 Served from: www.sweet-apple.co.uk @ 2013-05-23 20:35:14 by W3 Total Cache -->