<?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>E-Commerce Development UK &#124; Ecommerce web developer for Magento</title>
	<atom:link href="http://www.e-commercedevelopment.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.e-commercedevelopment.net</link>
	<description>Bespoke Web Design and Development for Magento.</description>
	<lastBuildDate>Mon, 11 Jun 2012 14:08:04 +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>Review stars aren’t showing in front-end.</title>
		<link>http://www.e-commercedevelopment.net/review-stars-aren%e2%80%99t-showing-in-front-end/</link>
		<comments>http://www.e-commercedevelopment.net/review-stars-aren%e2%80%99t-showing-in-front-end/#comments</comments>
		<pubDate>Sun, 04 Sep 2011 02:27:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://jamesanelay.co.uk/?p=10</guid>
		<description><![CDATA[This is a problem that catches me out time again and time again with Magento. I seem to end up looking through my .phtml template files for up-to 30 minuets before having a moment of deja vu and remembering you need to make the rating criteria visible on each website. Navigated to Catalog&#62;Reviews and Ratings&#62;Manage [...]]]></description>
				<content:encoded><![CDATA[<p>This is a problem that catches me out time again and time again with Magento. I seem to end up looking through my .phtml template files for up-to 30 minuets before having a moment of deja vu and remembering you need to make the rating criteria visible on each website.</p>
<ol>
<li>Navigated to Catalog&gt;Reviews and Ratings&gt;Manage Ratings</li>
<li>Select one of the rating criteria;&nbsp;Price, Quality and Value by default.</li>
<li>And under Rating Visibility select the store view that you wish for ratings to be visible, now as long as your theme supports it you should see rating(s) and be able to add ratings in your store.</li>
]]></content:encoded>
			<wfw:commentRss>http://www.e-commercedevelopment.net/review-stars-aren%e2%80%99t-showing-in-front-end/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adding Classing/Icons to top links.</title>
		<link>http://www.e-commercedevelopment.net/all-posts-in-theme-edits/</link>
		<comments>http://www.e-commercedevelopment.net/all-posts-in-theme-edits/#comments</comments>
		<pubDate>Sun, 04 Sep 2011 02:22:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://jamesanelay.co.uk/?p=7</guid>
		<description><![CDATA[To add separate icons to each of the top links you first need to give each of the links an individual class, you could hard code these in but the best way is to add the class to the links using XML I will use the my account link as an example. Editing XML Open [...]]]></description>
				<content:encoded><![CDATA[<p>To add separate icons to each of the top links you first need to give each of the links an individual class, you could hard code these in but the best way is to add the class to the links using XML</p>
<p>I will use the my account link as an example.</p>
<p><strong>Editing XML</strong></p>
<p>Open customer.xml and on around line 52 you should find this line;</p>
<p><code>&lt;action method="addLink" translate="label title" module="customer"&gt;&lt;label&gt;My Account&lt;/label&gt;&lt;url helper="customer/getAccountUrl"/&gt;&lt;title&gt;My Account&lt;/title&gt;&lt;prepare/&gt;&lt;urlParams/&gt;&lt;position&gt;10&lt;/position&gt;&lt;/action&gt;</code></p>
<p>To add a class you need to do two things, close out the li params and add the a params (the class) so just before the <code>&lt;/action&gt;</code> add <code>&lt;liParams/&gt;</code> and <code>&lt;aParams&gt;class="your-class-name-here"&lt;/aParams&gt;</code></p>
<p><strong id="wishlist">The exception – Wishlist.</strong></p>
<p>Magento handles the wishlist link a little differently choosing to use the addLinkBlock method instead of addLink to add this link. To add the class we need to change it back to addLink.</p>
<p>Replace the code <code>&lt;action method="addLinkBlock"&gt;&lt;blockName&gt;wishlist_link&lt;/blockName&gt;&lt;/action&gt;</code></p>
<p>with</p>
<p><code>&lt;action method="addLink" translate="label title" module="wishlist"&gt;&lt;label&gt;Wishlist&lt;/label&gt;&lt;url helper="wishlist/getListUrl"/&gt;&lt;title&gt;My Wishlist&lt;/title&gt;&lt;prepare/&gt;&lt;urlParams/&gt;&lt;liParams/&gt;&lt;aParams&gt;class="your-class-name-here"&lt;/aParams&gt;&lt;/action&gt;</code></p>
<p>and the simply change the aParam class.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.e-commercedevelopment.net/all-posts-in-theme-edits/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Change column count on category page.</title>
		<link>http://www.e-commercedevelopment.net/change-column-count-on-category-page/</link>
		<comments>http://www.e-commercedevelopment.net/change-column-count-on-category-page/#comments</comments>
		<pubDate>Sun, 04 Sep 2011 02:21:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://jamesanelay.co.uk/?p=5</guid>
		<description><![CDATA[A question I am commonly asked is, “How do I change the amount of products shown per line on my category page”. Thankfully Magneto makes this incredibly easy to do, and only requires one line to be edited. The best way to do this is to edit the file catalog.xml (app/design/frontend/default/[your_theme_name_here]/layout), open the file in [...]]]></description>
				<content:encoded><![CDATA[<p>A question I am commonly asked is, “How do I change the amount of products shown per line on my category page”. Thankfully Magneto makes this incredibly easy to do, and only requires one line to be edited.</p>
<p>The best way to do this is to edit the file catalog.xml (app/design/frontend/default/[your_theme_name_here]/layout), open the file in your preferred text editor and add the following line:</p>
<p><code>&lt;action method="setColumnCount"&gt;&lt;count&gt;3&lt;/count&gt;&lt;/action&gt;</code></p>
<p>before the tag of “product_list” blocks around lines 103 and 143</p>
<p>click save and upload the edited file.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.e-commercedevelopment.net/change-column-count-on-category-page/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
