<?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>Matthew Elliston &#187; Magento</title>
	<atom:link href="http://www.matthewelliston.com/category/development/magento/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.matthewelliston.com</link>
	<description>A site filled with my pictures, thoughts and things I want to remember!</description>
	<lastBuildDate>Wed, 24 Aug 2011 14:03:10 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
		<item>
		<title>Magento &#8211; Change Layered Navigation Category Text</title>
		<link>http://www.matthewelliston.com/magento-change-layered-navigation-category-text/</link>
		<comments>http://www.matthewelliston.com/magento-change-layered-navigation-category-text/#comments</comments>
		<pubDate>Thu, 18 Feb 2010 10:35:37 +0000</pubDate>
		<dc:creator>Matthew</dc:creator>
				<category><![CDATA[Magento]]></category>

		<guid isPermaLink="false">http://www.matthewelliston.com/?p=136</guid>
		<description><![CDATA[This is just a quick post about how to change the &#8220;Category&#8221; wording on the layered navigation of a site. I needed to change it to &#8220;Brand&#8221; and it took me a few minutes to locate the correct files as the developer guide lines were not showing up. I thought for this reason I will<a href="http://www.matthewelliston.com/magento-change-layered-navigation-category-text/" class="read-more">Continue Reading</a>]]></description>
			<content:encoded><![CDATA[<p>This is just a quick post about how to change the &#8220;Category&#8221; wording on the layered navigation of a site. I needed to change it to &#8220;Brand&#8221; and it took me a few minutes to locate the correct files as the developer guide lines were not showing up. I thought for this reason I will make a quick note of it here on my blog.</p>
<p>The file you need to look in is:</p>
<p><em>/shop/app/design/frontend/default/default/template/catalog/navigation/left.phtml</em></p>
<p>Remember default/default should be changed to your current interface and theme for the site.</p>
<p>In this file around line 46 you should see a line of code looking like this:</p>
<p>
<pre class="brush: php">
<dt><?php echo $this->__('Category') ?></dt>
</pre>
<p>Change this to whatever you want to display eg. &#8216;Brand&#8217;. So my line will now look like:</p>
<p>
<pre class="brush: php">
<dt><?php echo $this->__('Brand') ?></dt>
</pre>
<p>Save the file and hit refresh and voila! New title in your layered navigation.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.matthewelliston.com/magento-change-layered-navigation-category-text/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Magento Change &#8220;My Cart&#8221; to &#8220;My Basket&#8221;</title>
		<link>http://www.matthewelliston.com/magento-change-my-cart-to-my-basket/</link>
		<comments>http://www.matthewelliston.com/magento-change-my-cart-to-my-basket/#comments</comments>
		<pubDate>Thu, 11 Feb 2010 13:16:46 +0000</pubDate>
		<dc:creator>Matthew</dc:creator>
				<category><![CDATA[Magento]]></category>

		<guid isPermaLink="false">http://www.matthewelliston.com/?p=132</guid>
		<description><![CDATA[A site we were developing needed to have the wording &#8220;My Cart&#8221; changed to &#8220;My Basket&#8221; in the header links of the site. To do this we made a translate.csv file under &#8220;/app/design/frontend/default/default/locale/en_GB/&#8221; The &#8220;en_GB&#8221; could be whatever locale you are using. Our store is setup for the UK so it is &#8220;en_GB&#8221; the US<a href="http://www.matthewelliston.com/magento-change-my-cart-to-my-basket/" class="read-more">Continue Reading</a>]]></description>
			<content:encoded><![CDATA[<p>A site we were developing needed to have the wording &#8220;My Cart&#8221; changed to &#8220;My Basket&#8221; in the header links of the site.</p>
<p>To do this we made a translate.csv file under &#8220;/app/design/frontend/default/default/locale/en_GB/&#8221;</p>
<p>The &#8220;en_GB&#8221; could be whatever locale you are using. Our store is setup for the UK so it is &#8220;en_GB&#8221; the US would be &#8220;en_US&#8221;.</p>
<p>Also the template could differ, we were using the default template.</p>
<p>Now in the translate.csv file add the following lines:</p>
<p>&#8220;My Cart (%s item)&#8221;, &#8220;My Basket (%s item)&#8221;<br />
&#8220;My Cart (%s items)&#8221;, &#8220;My Basket (%s items)&#8221;<br />
&#8220;My Cart&#8221;, &#8220;My Basket&#8221;</p>
<p>Save the file and upload it to the location above. Login to the admin and refresh the cache by going to System->Cache Management. Select refresh in the drop down and press &#8220;Save Cache Settings&#8221;</p>
<p>Refresh your website front end to notice the difference.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.matthewelliston.com/magento-change-my-cart-to-my-basket/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>

