<?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>Ron Dillehay &#187; magento</title>
	<atom:link href="http://rondillehay.com/tag/magento/feed/" rel="self" type="application/rss+xml" />
	<link>http://rondillehay.com</link>
	<description>Just another freeblogit.com site</description>
	<lastBuildDate>Sat, 31 Jul 2010 15:52:18 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>magento seo</title>
		<link>http://rondillehay.com/2009/05/23/magento-seo/</link>
		<comments>http://rondillehay.com/2009/05/23/magento-seo/#comments</comments>
		<pubDate>Sat, 23 May 2009 14:32:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[magento]]></category>
		<category><![CDATA[seo]]></category>

		<guid isPermaLink="false">http://www.rondillehay.com/?p=144</guid>
		<description><![CDATA[With the rapid growth of the magento e-commerce platform, it is great to see the community working so quickly to improve the SEO of Magento. Out of the box there are a few problems with Magento&#8217;s default SEO standards, but with &#8230; <a href="http://rondillehay.com/2009/05/23/magento-seo/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>With the rapid growth of the magento e-commerce platform, it is great to see the community working so quickly to improve the SEO of Magento. Out of the box there are a few problems with Magento&#8217;s default SEO standards, but with just a little effort, Magento is very easy to optimize. Here are the best steps to improve SEO in magento:</p>
<h4><span style="text-decoration: underline">Get rid of duplicate product URLS.</span></h4>
<p>Thankfully Mike Smullin has already taken care of this with his easy tweak. Visit Mike&#8217;s post about this <a href="http://www.mikesmullin.com/development/use-categories-product-urls-magento-seo-without-duplicate-content/">here</a>. This requires one small modification to Magneto core, so hopefully someone will write an extension to take care of this without having to edit the core. Otherwise you will want to make sure you take care to make sure this isn&#8217;t overwritten during upgrades. In case the link above isn&#8217;t working, the modification is explained below.</p>
<p>Navigate to:<br />
<code>/app/code/core/Mage/Catalog/Model/Resource/Eav/Mysql4/Product/Collection.php</code></p>
<p>Locate:<br />
<code>-&gt;where('category_id=? OR category_id is NULL', $this-&gt;_urlRewriteCategory)</code></p>
<p>Change it to:<br />
<code>//-&gt;where('category_id=? OR category_id is NULL', $this-&gt;_urlRewriteCategory)</code></p>
<h4><span style="text-decoration: underline">Make good use of robots directives to hide pages that will leak your pagerank.</span></h4>
<p>There is a free extension from Yoast that will make this process very easy! You can view the extension <a href="http://www.magentocommerce.com/extension/920">here</a>. Detailed instructions for using the extension (along with some other seo suggestions) can be found at the <a href="http://yoast.com/guide-to-magento-seo/">yoast</a> website.</p>
<p>The Yoast extension will eliminate the indexing of pages that cause problems with search engines, while still allowing access to the good links on those pages.</p>
<p>I will add more as I find them, but these two resources will go a long way in getting your Magento installation ready to take advantage of good organic search results.</p>
]]></content:encoded>
			<wfw:commentRss>http://rondillehay.com/2009/05/23/magento-seo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>magento disappearing grid page navigation</title>
		<link>http://rondillehay.com/2009/05/18/magento-disappearing-grid-page-navigation/</link>
		<comments>http://rondillehay.com/2009/05/18/magento-disappearing-grid-page-navigation/#comments</comments>
		<pubDate>Tue, 19 May 2009 02:13:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[code]]></category>
		<category><![CDATA[magento]]></category>

		<guid isPermaLink="false">http://www.rondillehay.com/?p=135</guid>
		<description><![CDATA[If you&#8217;ve played at all with Magento since IE8 you&#8217;ve probably noticed an annoying bug that causes the pagination to disappear whenever you hover over it. That&#8217;s not a great way to build customer confidence in your store! There are &#8230; <a href="http://rondillehay.com/2009/05/18/magento-disappearing-grid-page-navigation/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;ve played at all with Magento since IE8 you&#8217;ve probably noticed an annoying bug that causes the pagination to disappear whenever you hover over it.  That&#8217;s not a great way to build customer confidence in your store!</p>
<p style="text-align: left"><img class="size-full wp-image-136 alignnone" style="margin: 2px;border: black 2px solid" src="http://rondillehay.com/files/2009/05/magento-navigation.jpg" alt="magento-navigation" width="578" height="62" /></p>
<p>There are two options to fix this:</p>
<p>1) The easy fix is to place the following code in your header, just after the &#8216;title&#8217; tag:<br />
<code>&lt;meta http-equiv=“X-UA-Compatible” content=“IE=EmulateIE7″ /&gt;</code></p>
<p>You&#8217;ll find it here:<br />
<code>app/design/frontend/default(your interface)/default(your theme)/template/page/html/head.phtml</code></p>
<p>2) The best fix is to add some code to your css so that you aren&#8217;t making a global change away from IE8, which is going to become the standard whether you like it or not.  Open your iestyles.css file and add the following code:<br />
<code>.pager a:hover { zoom:1; } </code></p>
<p>You&#8217;ll find it here:<br />
<code>/skin/frontend/default/(yourtheme)/css/iestyles.css</code></p>
<p>Once you&#8217;ve made the change, refresh your cache (magento and your browser), and you should have the problem fixed.</p>
]]></content:encoded>
			<wfw:commentRss>http://rondillehay.com/2009/05/18/magento-disappearing-grid-page-navigation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
