<?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, 27 Mar 2012 10:49:59 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<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>
		<item>
		<title>How can I buy Microsoft Office 2011 for Mac cheap?</title>
		<link>http://www.sweet-apple.co.uk/how-can-i-buy-microsoft-office-2011-for-mac-cheap/</link>
		<comments>http://www.sweet-apple.co.uk/how-can-i-buy-microsoft-office-2011-for-mac-cheap/#comments</comments>
		<pubDate>Sat, 27 Aug 2011 07:23:20 +0000</pubDate>
		<dc:creator>Clive Sweeting</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Office Mac]]></category>

		<guid isPermaLink="false">http://www.sweet-apple.co.uk/?p=1191</guid>
		<description><![CDATA[One of the questions I get asked a lot is &#8220;what&#8217;s the cheapest way to get Microsoft Office for Mac?&#8221; Whether you&#8217;re a Windows Switcher, a student or home user, chances are that at some point you&#8217;ll have to work &#8230; <a href="http://www.sweet-apple.co.uk/how-can-i-buy-microsoft-office-2011-for-mac-cheap/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>One of the questions I get asked a lot is &#8220;what&#8217;s the <a href="http://www.amazon.co.uk/s?ie=UTF8&amp;x=0&amp;ref_=nb_sb_noss&amp;y=0&amp;field-keywords=office%20mac&amp;url=search-alias%3Daps#?_encoding=UTF8&amp;tag=sweetapple-21&amp;linkCode=ur2&amp;camp=1634&amp;creative=19450" target="_blank">cheapest way to get Microsoft Office for Mac</a>?&#8221; Whether you&#8217;re a Windows Switcher, a student or home user, chances are that at some point you&#8217;ll have to work on a Microsoft Word, Excel or Powerpoint document, and to do this you need Office for Mac (or iWork).</p>
<p>The short answer is if you&#8217;re a student or using it for non-business purposes get <a href="http://www.amazon.co.uk/s?ie=UTF8&amp;ref_=nb_sb_ss_i_2_23&amp;rh=i%3Aaps%2Ck%3Aoffice%20mac%20home%20and%20student%20%20edition%202011&amp;field-keywords=office%20mac%20home%20and%20student%20%20edition%202011&amp;url=search-alias%3Daps&amp;ajr=0#?_encoding=UTF8&amp;tag=sweetapple-21&amp;linkCode=ur2&amp;camp=1634&amp;creative=19450" target="_blank">Microsoft Office Home and Student Edition</a>. You can buy it with licences for one or three computers and it&#8217;ll cost around £70-85. Note that this version does not include Outlook, so if you need to connect to a Microsoft Exchange Server for email/contacts/calendar you need to buy a different licence.</p>
<p>If you intend to use Office for Mac for your business, or need Outlook to connect to a Microsoft Exchange Server, you&#8217;ll need to buy <a href="http://www.amazon.co.uk/s?ie=UTF8&amp;x=0&amp;ref_=nb_sb_noss&amp;y=0&amp;field-keywords=office%20mac%20home%20and%20business%20edition%202011&amp;url=search-alias%3Daps#?_encoding=UTF8&amp;tag=sweetapple-21&amp;linkCode=ur2&amp;camp=1634&amp;creative=19450" target="_blank">Microsoft Office Home and Business Edition</a>. Again there are single or multiple licence versions available starting from around £165. Outlook 2011 for Mac is really really good. If you&#8217;ve suffered using Entourage with Exchange in the past you&#8217;ll absolutely love it.</p>
<p>The last option is to buy Apple&#8217;s<a href="http://www.amazon.co.uk/s?ie=UTF8&amp;x=0&amp;ref_=nb_sb_noss&amp;y=0&amp;field-keywords=office%20mac%202011&amp;url=search-alias%3Daps#?url=search-alias=aps?_encoding=UTF8&amp;tag=sweetapple-21&amp;linkCode=ur2&amp;camp=1634&amp;creative=19450" target="_blank"> iWork</a> software instead. iWork lets you import and export Word, Excel and Powerpoint files and does a pretty good job. But make absolutely no mistake. It&#8217;s not Office. It looks nothing like it. If you need complete Mac/Windows transparency, don&#8217;t make the mistake of buying iWork. However if you need to open or create the occasional Work, Excel or Powerpoint compatible file it does a decent job.</p>
<p>Pages, the &#8220;Word Processing&#8221; part of iWork actually makes a pretty acceptable Desktop Publishing program and is much easier to use than Word in my opinion, but Numbers is frankly a poor &#8220;Spreadsheet&#8221; substitute for Excel. Keynote is absolutely brilliant, blowing Powerpoint completely away for creating beautiful Presentations.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sweet-apple.co.uk/how-can-i-buy-microsoft-office-2011-for-mac-cheap/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Magento &#8211; only show categories containing products in main navigation</title>
		<link>http://www.sweet-apple.co.uk/magento-only-show-categories-containing-products-in-main-navigation/</link>
		<comments>http://www.sweet-apple.co.uk/magento-only-show-categories-containing-products-in-main-navigation/#comments</comments>
		<pubDate>Mon, 22 Aug 2011 15:49:46 +0000</pubDate>
		<dc:creator>Clive Sweeting</dc:creator>
				<category><![CDATA[Magento]]></category>

		<guid isPermaLink="false">http://www.sweet-apple.co.uk/?p=1180</guid>
		<description><![CDATA[I was speaking to a client in Bristol who needed a freelance Magento developer to make some changes to their site. Top of the list was to modify the main navigation so that a category would only show if it &#8230; <a href="http://www.sweet-apple.co.uk/magento-only-show-categories-containing-products-in-main-navigation/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I was speaking to a client in Bristol who needed a freelance Magento developer to make some changes to their site. Top of the list was to modify the main navigation so that a category would only show if it contained active products, or sub categories with active products.</p>
<p>To cut a very long story short, if you override or subclass Mage_Catalog_Block_Navigation you can do this fairly quickly. Add the method _hasProducts as shown below, then you need to call this inside the renderCategoriesMenuHtml() and _renderCategoryMenuItemHtml() methods&#8230;</p>
<pre class="brush: php; title: ; notranslate">
/**
* Check if a product has an active products
* @param int $category_id
* @return boolean
*/
private function _hasProducts( $category_id )
{
$products = Mage::getModel('catalog/category')-&gt;load($category_id)
-&gt;getProductCollection()
-&gt;addAttributeToSelect('entity_id')
-&gt;addAttributeToFilter('status', 1)
-&gt;addAttributeToFilter('visibility', 4);
/* @var $products Mage_Catalog_Model_Resource_Eav_Mysql4_Product_Collection */
return ( $products-&gt;count() &gt; 0 )  ? true : false;
}
</pre>
<p>Then modify the 2 methods below&#8230;</p>
<pre class="brush: php; title: ; notranslate">
protected function _renderCategoryMenuItemHtml()
{
//snip a whole load of code until you reach the first foreach loop
foreach ($children as $child) {
if ( $child-&gt;getIsActive() ) {
if( $child-&gt;hasChildren() ) {
$activeChildren[] = $child;
}else{
if( $this-&gt;_hasProducts( $child-&gt;entity_id ) ) {
$activeChildren[] = $child;
}
}
}
//don't change the rest of the method...
}

public function renderCategoriesMenuHtml()
{
//snip a whole load of code until you reach the first foreach loop
foreach ($this-&gt;getStoreCategories() as $child) {
/* @var $child Varien_Data_Tree_Node */
if ( $child-&gt;getIsActive() ) {
if( $child-&gt;hasChildren() ) {
$activeCategories[] = $child;
}else{
if( $this-&gt;_hasProducts( $child-&gt;entity_id ) ) {
$activeCategories[] = $child;
}
}
}
}
//don't change the rest of the method...

}
</pre>
<p>Looking for a Magento developer to help you get your ecommerce website moving? Sweet-Apple is based near Bath and builds and supports cost effective Magento ecommerce websites. Give us a call on 01225 309162 &#8211; we&#8217;d love to help.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sweet-apple.co.uk/magento-only-show-categories-containing-products-in-main-navigation/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Wait before upgrading to Lion OS X 10.7!</title>
		<link>http://www.sweet-apple.co.uk/wait-before-upgrading-to-lion-os-x-10-7/</link>
		<comments>http://www.sweet-apple.co.uk/wait-before-upgrading-to-lion-os-x-10-7/#comments</comments>
		<pubDate>Wed, 22 Jun 2011 11:07:18 +0000</pubDate>
		<dc:creator>Clive Sweeting</dc:creator>
				<category><![CDATA[Troubleshooting]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Technical Support]]></category>
		<category><![CDATA[Telephone Support]]></category>
		<category><![CDATA[troubleshooting]]></category>

		<guid isPermaLink="false">http://www.sweet-apple.co.uk/?p=1174</guid>
		<description><![CDATA[I&#8217;ve just been speaking to a client in Marshfield who&#8217;s just bought a new iMac from the AppleStore in Bath. The sales person was enthusiastically telling them how they could get their free upgrade to Lion when it comes out &#8230; <a href="http://www.sweet-apple.co.uk/wait-before-upgrading-to-lion-os-x-10-7/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve just been speaking to a client in Marshfield who&#8217;s just bought a new iMac from the AppleStore in Bath. The sales person was enthusiastically telling them how they could get their free upgrade to Lion when it comes out in July. I&#8217;m here to tell you that any responsible person providing Mac support should be telling you quite clearly <strong>DO NOT upgrade to Lion for at least 3 months after July 2011</strong>, possibly more. Why?</p>
<h2>Lion will have compatibility bugs&#8230;</h2>
<p>Every time Apple release a major OS update, inevitably some programs will have problems working with it. If you use nothing but Apple provided software, you might find that you have no issues at all &#8211; but for the majority of that people that just isn&#8217;t true. They&#8217;ve got old versions of Photoshop, Illustrator, MYOB, Appleworks, Word, etc. that they still use for their day to day work and rely on.</p>
<h2>Lion drops support for old PPC software</h2>
<p>10.7 Lion is a massive change. It finally ditches all support for software written to run on the old PowerPC G4 and G5 processor families that you may remember from days of yore (well ok, 5 years ago). Apple created a technology called Rosetta that enabled new Intel powered Macs to run software that was written to run only on PPC machines. Since OS X 10.4, Rosetta has done a stirling job, letting your shiny new Intel Mac run your old software. Sure, they didn&#8217;t run as lightning quick as software optimised for Intel chips, but it got the job done. But no longer&#8230;</p>
<p>Before you even dream of upgrading to Lion, make sure you check each and every program that you use on a day to day basis is &#8220;Intel Native&#8221;. The easiest way to do this is to open System Profiler and click into the Software-&gt;Applications section. Wait for a few moments whilst the list gets populated. Then click on the &#8220;Kind&#8221; column. All the programs that are &#8220;PowerPC&#8221; will NOT work in Lion and you&#8217;ll need to find replacements or get upgrades.</p>
<p><em>Even if you find that there&#8217;s nothing that business critical, I still wouldn&#8217;t upgrade to Lion for at least 3 months, if not 6</em>. Let the &#8220;early adopters&#8221; gnash their teeth with frustration &#8211; despite what the computer industry would like you to believe, it&#8217;s much more expensive and painful on the &#8220;bleeding edge&#8221; of technology.</p>
<p><em>Looking for unbiased, down to earth and sensible Mac support? Give Sweet-Apple a call on 01225 309162. We&#8217;re here to save your hair, sanity and wallet from making expensive Mac mistakes&#8230;</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sweet-apple.co.uk/wait-before-upgrading-to-lion-os-x-10-7/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

