<?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>Optimise Blog &#187; Fix</title>
	<atom:link href="http://optimiseblog.co.uk/tag/fix/feed/" rel="self" type="application/rss+xml" />
	<link>http://optimiseblog.co.uk</link>
	<description>Technology, in plain English!</description>
	<lastBuildDate>Mon, 09 Jan 2012 19:08:34 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Magento Tip : Get Grouped Product&#8217;s Associated Simple Products on Category Page</title>
		<link>http://optimiseblog.co.uk/magento-grouped-products-associated-simple-products-on-category-listing/</link>
		<comments>http://optimiseblog.co.uk/magento-grouped-products-associated-simple-products-on-category-listing/#comments</comments>
		<pubDate>Mon, 06 Sep 2010 12:13:39 +0000</pubDate>
		<dc:creator>Sid Vel</dc:creator>
				<category><![CDATA[Magento]]></category>
		<category><![CDATA[Fix]]></category>
		<category><![CDATA[Optimise]]></category>
		<category><![CDATA[troubleshoot]]></category>

		<guid isPermaLink="false">http://optimiseblog.co.uk/?p=365</guid>
		<description><![CDATA[Here is a simple trick to get the sub-products of a grouped product on the category products listing page. Add the following code to the products list.phtml file. $_associatedProducts = array(); if ($_product-&#62;getTypeId() == 'grouped') { $_associatedProducts = $_product-&#62;getTypeInstance(true)-&#62;getAssociatedProducts($_product); } Once you collect all simple product data associated with the grouped product, you can loop [...]]]></description>
			<content:encoded><![CDATA[<p>Here is a simple trick to get the sub-products of a grouped product on the category products listing page. Add the following code to the products list.phtml file.</p>
<p><code>$_associatedProducts = array();<br />
if ($_product-&gt;getTypeId() == 'grouped')<br />
{<br />
$_associatedProducts = $_product-&gt;getTypeInstance(true)-&gt;getAssociatedProducts($_product);<br />
}</code></p>
<p>Once you collect all simple product data associated with the grouped product, you can loop through the array and display the simple product&#8217;s data.</p>
]]></content:encoded>
			<wfw:commentRss>http://optimiseblog.co.uk/magento-grouped-products-associated-simple-products-on-category-listing/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Fixed Magento Checkout : Set &#8216;Ship to This Address&#8217; as Default</title>
		<link>http://optimiseblog.co.uk/magento-checkout-ship-to-this-address/</link>
		<comments>http://optimiseblog.co.uk/magento-checkout-ship-to-this-address/#comments</comments>
		<pubDate>Fri, 16 Jul 2010 12:47:13 +0000</pubDate>
		<dc:creator>Sid Vel</dc:creator>
				<category><![CDATA[Magento]]></category>
		<category><![CDATA[checkout]]></category>
		<category><![CDATA[eCommerce]]></category>
		<category><![CDATA[Fix]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://optimiseblog.co.uk/?p=340</guid>
		<description><![CDATA[How often would you buy from an online shop and ship the goods to an address that is different from your billing address? Sometimes, I do use the card that is registered with my home address, but use my office address for delivery. This might not be the same case with about 80% of online [...]]]></description>
			<content:encoded><![CDATA[<p>How often would you buy from an online shop and ship the goods to an address that is different from your billing address? Sometimes, I do use the card that is registered with my home address, but use my office address for delivery. This might not be the same case with about 80% of online shoppers.</p>
<p>Then, why does Magento eCommerce select the &#8220;<strong>Ship to different address</strong>&#8221; option as default!? Here is a way to fix it and make Magento to select &#8220;<strong>Ship to this address</strong>&#8221; by default.</p>
<h3>Magento FIX :</h3>
<p>Copy app/code/core/Mage/Checkout/Block/Onepage/Billing.php to app/code/local/Mage/Checkout/Block/Onepage/Billing.php. This ensures that you do not end up messing with Magento&#8217;s core files.</p>
<p><strong><em>Nagivate to the function</em></strong></p>
<p><code>public function isUseBillingAddressForShipping()<br />
{<br />
if (($this-&gt;getQuote()-&gt;getIsVirtual()) || !$this-&gt;getQuote()-&gt;getShippingAddress()-&gt;getSameAsBilling())<br />
{<br />
return false;<br />
}<br />
return true;<br />
}</code></p>
<p><strong><em>Swap around the returns &#8220;false&#8221; and &#8220;true&#8221;</em></strong></p>
<p><code>public function isUseBillingAddressForShipping()<br />
{<br />
if (($this-&gt;getQuote()-&gt;getIsVirtual()) || !$this-&gt;getQuote()-&gt;getShippingAddress()-&gt;getSameAsBilling())<br />
{<br />
return true;<br />
}<br />
return false;<br />
}</code></p>
<p>That&#8217;s a good fix. Enjoy working with Magento eCommerce!</p>
]]></content:encoded>
			<wfw:commentRss>http://optimiseblog.co.uk/magento-checkout-ship-to-this-address/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Fixed : Cannot Connect to Windows Live Sync</title>
		<link>http://optimiseblog.co.uk/fixed-cannot-connect-to-windows-live-sync/</link>
		<comments>http://optimiseblog.co.uk/fixed-cannot-connect-to-windows-live-sync/#comments</comments>
		<pubDate>Mon, 14 Jun 2010 09:07:02 +0000</pubDate>
		<dc:creator>Sid Vel</dc:creator>
				<category><![CDATA[The Internet]]></category>
		<category><![CDATA[Fix]]></category>
		<category><![CDATA[internet explorer]]></category>
		<category><![CDATA[live sync]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://optimiseblog.co.uk/?p=289</guid>
		<description><![CDATA[If you are a Windows Live Sync user and one fine day your Live Sync won't connect, the error message might be : Cannot Connect to Windows Live Sync. The fix is very simple. Your Internet Explorer might be set to Work Offline. You have to go to the File Menu of Internet Explorer and switch off Work Offline. Windows Live Sync uses Internet Explorer's settings and cannot connect when IE is offline. Simples!]]></description>
			<content:encoded><![CDATA[<p>If you are a Windows Live Sync user and one fine day your Live Sync won&#8217;t connect, the error message might be : <strong><em>Cannot Connect to Windows Live Sync. </em><span style="font-weight: normal;">The fix is very simple. Your Internet Explorer might be set to Work Offline. You have to go to the File Menu of Internet Explorer and switch off Work Offline. </span></strong><strong><span style="font-weight: normal;">Windows Live Sync uses Internet Explorer&#8217;s settings and cannot connect when IE is offline. Simples!</span></strong></p>
<p><strong><em><img class="aligncenter size-medium wp-image-291" title="Internet Explorer Working Offline Title Bar" src="http://optimiseblog.co.uk/wp-content/uploads/2010/06/internet-explorer-working-offline-250x51.png" alt="Internet Explorer Working Offline Title Bar" width="250" height="51" /></em></strong></p>
<p><strong><em><img class="aligncenter size-full wp-image-292" title="Internet Explorer Working Offline File Menu" src="http://optimiseblog.co.uk/wp-content/uploads/2010/06/internet-explorer-work-offline.png" alt="Internet Explorer Working Offline File Menu" width="193" height="353" /></em></strong></p>
<p><strong><em>Fix : Open Internet Explorer , File menu, Untick Work Offline</em></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://optimiseblog.co.uk/fixed-cannot-connect-to-windows-live-sync/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>HTML Fix :  IMG Tag Displays a Bottom Margin Space in Firefox</title>
		<link>http://optimiseblog.co.uk/html-fix-img-tag-displays-a-bottom-margin-space-in-firefox/</link>
		<comments>http://optimiseblog.co.uk/html-fix-img-tag-displays-a-bottom-margin-space-in-firefox/#comments</comments>
		<pubDate>Fri, 04 Jun 2010 10:03:21 +0000</pubDate>
		<dc:creator>Sid Vel</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Fix]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Images]]></category>

		<guid isPermaLink="false">http://optimiseblog.co.uk/?p=278</guid>
		<description><![CDATA[Firefox adds a little white space below images. This looks like a bottom margin, but isn’t really a margin space. Add a Display: Block to your Images in the CSS and the bottom margin / white space will be gone!]]></description>
			<content:encoded><![CDATA[<p>For some strange reason, Firefox adds a little white space below images. This looks like a bottom margin, but isn&#8217;t really a margin space.</p>
<p>When reading through the internet I found a fix for this issue. Very simple!</p>
<p>Add the following to your css and the bottom margin / white space will be gone&#8230;</p>
<p>
<pre>img {display: block;}</pre>
</p>
<p><a rel="external nofollow" href="http://akinas.com/pages/en/blog/firefox_image_gap">Original Source</a></p>
]]></content:encoded>
			<wfw:commentRss>http://optimiseblog.co.uk/html-fix-img-tag-displays-a-bottom-margin-space-in-firefox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

