<?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>Magento | Chris Walton</title>
	<atom:link href="https://www.chriswalton.co.uk/category/web-development/magento/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.chriswalton.co.uk</link>
	<description>Just another WordPress site</description>
	<lastBuildDate>Wed, 16 Nov 2016 17:36:47 +0000</lastBuildDate>
	<language>en-GB</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.2.2</generator>
	<item>
		<title>Magento, add your own body class through XML injection</title>
		<link>https://www.chriswalton.co.uk/magento-add-your-own-body-class-through-xml-injection/</link>
					<comments>https://www.chriswalton.co.uk/magento-add-your-own-body-class-through-xml-injection/#respond</comments>
		
		<dc:creator><![CDATA[chris]]></dc:creator>
		<pubDate>Wed, 16 Nov 2016 17:36:47 +0000</pubDate>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Magento]]></category>
		<guid isPermaLink="false">http://www.chriswalton.co.uk/?p=461</guid>

					<description><![CDATA[<p>Adding a custom body class to a Magento page is accomplished pretty easily through XML, now this can be done through your site themes XML files for global changes or within the CMS which would be the easiest way to target a specific CMS, Category or Product page.</p>
<p>The post <a href="https://www.chriswalton.co.uk/magento-add-your-own-body-class-through-xml-injection/">Magento, add your own body class through XML injection</a> first appeared on <a href="https://www.chriswalton.co.uk">Chris Walton</a>.</p>]]></description>
										<content:encoded><![CDATA[<p>Adding a custom body class to a Magento page is accomplished pretty easily through XML, now this can be done through your site themes XML files for global changes or within the CMS which would be the easiest way to target a specific CMS, Category or Product page.</p>
<p>Open the page you want to update and add the following code to the Update XML Layout option</p>
<pre><code>&lt;reference name="root"&gt;
 &lt;action method="addBodyClass"&gt;&lt;classname&gt;my-body-class&lt;/classname&gt;&lt;/action&gt;
&lt;/reference&gt; </code></pre>
<p>And there you go, your page now has thi</p><p>The post <a href="https://www.chriswalton.co.uk/magento-add-your-own-body-class-through-xml-injection/">Magento, add your own body class through XML injection</a> first appeared on <a href="https://www.chriswalton.co.uk">Chris Walton</a>.</p>]]></content:encoded>
					
					<wfw:commentRss>https://www.chriswalton.co.uk/magento-add-your-own-body-class-through-xml-injection/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Updating an Order Status in the Magento Database</title>
		<link>https://www.chriswalton.co.uk/updating-an-order-status-in-the-magento-database/</link>
					<comments>https://www.chriswalton.co.uk/updating-an-order-status-in-the-magento-database/#respond</comments>
		
		<dc:creator><![CDATA[chris]]></dc:creator>
		<pubDate>Tue, 16 Feb 2016 10:00:35 +0000</pubDate>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Magento]]></category>
		<category><![CDATA[Web Development]]></category>
		<guid isPermaLink="false">http://www.chriswalton.co.uk/?p=445</guid>

					<description><![CDATA[<p>No matter how good your system is sometimes things go wrong and you have to go into the database to make things right.</p>
<p>Magento is no exception, be it an issue with a module install/upgrade or an order which hasn't progressed for any number of reasons... Luckily changing a Magento order status is pretty easy a task.</p>
<p>The post <a href="https://www.chriswalton.co.uk/updating-an-order-status-in-the-magento-database/">Updating an Order Status in the Magento Database</a> first appeared on <a href="https://www.chriswalton.co.uk">Chris Walton</a>.</p>]]></description>
										<content:encoded><![CDATA[<p>No matter how good your system is sometimes things go wrong and you have to go into the database to make things right.</p>
<p>Magento is no exception, be it an issue with a module install/upgrade or an order which hasn&#8217;t progressed for any number of reasons&#8230; Luckily changing a Magento order status is pretty easy a task;</p>
<ol>
<li>First we need to find the entity ID for particular order, this is different from the Order ID we see in the Sales Grid but isn&#8217;t at all difficult to find. Simply open the order in your browser and examine the page URL, this will contain the ID</li>
<li>Open following tables and search for the ID we found in Step 1
<ul>
<li>sales_flat_order</li>
<li>sales_flat_order_grid</li>
</ul>
</li>
<li>Update status&#8217; from <code>processing</code> to <code>complete</code> (for example, you may be wishing to cancel the order)</li>
</ol>
<p>And thats it, pretty easy!</p>
<p>&nbsp;</p><p>The post <a href="https://www.chriswalton.co.uk/updating-an-order-status-in-the-magento-database/">Updating an Order Status in the Magento Database</a> first appeared on <a href="https://www.chriswalton.co.uk">Chris Walton</a>.</p>]]></content:encoded>
					
					<wfw:commentRss>https://www.chriswalton.co.uk/updating-an-order-status-in-the-magento-database/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
