<?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>Chris Walton</title>
	<atom:link href="https://www.chriswalton.co.uk/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.chriswalton.co.uk</link>
	<description>Just another WordPress site</description>
	<lastBuildDate>Mon, 13 Mar 2017 16:52:27 +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>Fancy a Custom WordPress Login Page? Heres How</title>
		<link>https://www.chriswalton.co.uk/fancy-a-custom-wordpress-login-page-heres-how/</link>
					<comments>https://www.chriswalton.co.uk/fancy-a-custom-wordpress-login-page-heres-how/#respond</comments>
		
		<dc:creator><![CDATA[chris]]></dc:creator>
		<pubDate>Mon, 13 Mar 2017 16:51:09 +0000</pubDate>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[WordPress]]></category>
		<guid isPermaLink="false">http://www.chriswalton.co.uk/?p=538</guid>

					<description><![CDATA[<p>Custom login pages can give website owners the opportunity to make brand their website for employees especially for larger multi-user sites like news outlets.</p>
<p>Sure you can install a module like the <a href="https://en-gb.wordpress.org/plugins/login-customizer/" target="_blank">Custom Login Page Customizer</a> but if you have a little CSS know-how why not do it yourself?</p>
<p>The post <a href="https://www.chriswalton.co.uk/fancy-a-custom-wordpress-login-page-heres-how/">Fancy a Custom WordPress Login Page? Heres How</a> first appeared on <a href="https://www.chriswalton.co.uk">Chris Walton</a>.</p>]]></description>
										<content:encoded><![CDATA[<p>Custom login pages can give website owners the opportunity to make brand their website for employees especially for larger multi-user sites like news outlets.</p>
<p>Sure you can install a module like the <a href="https://en-gb.wordpress.org/plugins/login-customizer/" target="_blank">Custom Login Page Customizer</a> but if you have a little CSS know-how why not do it yourself?</p>
<p>This is how I have been doing it, first open your <strong>functions.php</strong> file and add the following lines of code;</p>
<pre>function custom_login_css() {
wp_enqueue_style( 'theme_login_css', get_template_directory_uri() . '/css/login.css', false );
}</pre>
<p>This simply calls a custom CSS file to the login page allowing you to style it.</p>
<p>Next we need to add a pair of functions which will update the logo URL and alt text to use your sites URL and Name.</p>
<pre>function custom_login_url() { return home_url(); }
function custom_login_title() { return get_option('blogname'); }</pre>
<p>Finally set a call so they are only loaded on the login page.</p>
<pre>add_action( 'login_enqueue_scripts', 'theme_login_css', 10 );
add_filter('login_headerurl', 'theme_login_url');
add_filter('login_headertitle', 'theme_login_title');
</pre>
<p>Now all you need to do is create your custom <strong>login.css</strong> file and drop it into the location you set in step one, I will leave this bit up to you.</p><p>The post <a href="https://www.chriswalton.co.uk/fancy-a-custom-wordpress-login-page-heres-how/">Fancy a Custom WordPress Login Page? Heres How</a> first appeared on <a href="https://www.chriswalton.co.uk">Chris Walton</a>.</p>]]></content:encoded>
					
					<wfw:commentRss>https://www.chriswalton.co.uk/fancy-a-custom-wordpress-login-page-heres-how/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Adding Featured Image Support to a WordPress Page</title>
		<link>https://www.chriswalton.co.uk/adding-featured-image-support-to-a-wordpress-page/</link>
					<comments>https://www.chriswalton.co.uk/adding-featured-image-support-to-a-wordpress-page/#respond</comments>
		
		<dc:creator><![CDATA[chris]]></dc:creator>
		<pubDate>Fri, 10 Mar 2017 16:53:56 +0000</pubDate>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[wordpress]]></category>
		<guid isPermaLink="false">http://www.chriswalton.co.uk/?p=537</guid>

					<description><![CDATA[<p>Ever wanted to be able to add a Featured Image to not just your WordPress posts but you're pages? You can easily extend your theme by adding a single line to your functions.php file.</p>
<p>The post <a href="https://www.chriswalton.co.uk/adding-featured-image-support-to-a-wordpress-page/">Adding Featured Image Support to a WordPress Page</a> first appeared on <a href="https://www.chriswalton.co.uk">Chris Walton</a>.</p>]]></description>
										<content:encoded><![CDATA[<p>Ever wanted to be able to add a Featured Image to not just your WordPress posts but you&#8217;re pages? You can easily extend your theme by adding a single line to your functions.php file.</p>
<pre>add_theme_support( 'post-thumbnails' );</pre>
<p>Violla you can now upload Featured Images to your pages through the CMS. You will obviously need to then extend your themes page templates to call in the images. This can differ slightly from theme to theme so my advice is to checkout how it is applied within files such as index.php and single.php being a good place to start, you will be looking for the code which looks something like this;</p>
<pre>&lt;?php the_post_thumbnail('post-image'); ?&gt;</pre>
<p>Remember if you are using a theme sourced off of the <a href="https://wordpress.org/themes/" target="_blank">WordPress Theme Directory</a> you will need to remember that any updates from WordPress may remove any additions you make. For more information on this feature why not check out the WordPress Codex page on <a href="https://codex.wordpress.org/Post_Thumbnails" target="_blank">Post Thumbnails</a>.</p><p>The post <a href="https://www.chriswalton.co.uk/adding-featured-image-support-to-a-wordpress-page/">Adding Featured Image Support to a WordPress Page</a> first appeared on <a href="https://www.chriswalton.co.uk">Chris Walton</a>.</p>]]></content:encoded>
					
					<wfw:commentRss>https://www.chriswalton.co.uk/adding-featured-image-support-to-a-wordpress-page/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Changing a Local Git Repo Origin</title>
		<link>https://www.chriswalton.co.uk/changing-a-local-git-repo-origin/</link>
					<comments>https://www.chriswalton.co.uk/changing-a-local-git-repo-origin/#respond</comments>
		
		<dc:creator><![CDATA[chris]]></dc:creator>
		<pubDate>Sun, 08 Jan 2017 10:00:25 +0000</pubDate>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Web Development]]></category>
		<guid isPermaLink="false">http://www.chriswalton.co.uk/?p=469</guid>

					<description><![CDATA[<p>There are many options out there for keeping track of your project updates, release versions and storing your code. Be it through Github, Bitbucket or a number of other services and from time to time you may decide you need to move a repository from one service to another. If you are anything like me you could have two dozen websites installed locally which you need to do work with on a regular basis so won't want to go through setting up websites again (nightmare).</p>
<p>The post <a href="https://www.chriswalton.co.uk/changing-a-local-git-repo-origin/">Changing a Local Git Repo Origin</a> first appeared on <a href="https://www.chriswalton.co.uk">Chris Walton</a>.</p>]]></description>
										<content:encoded><![CDATA[<p>There are many options out there for keeping track of your project updates, release versions and storing your code. Be it through Github, Bitbucket or a number of other services and from time to time you may decide you need to move a repository from one service to another. If you are anything like me you could have two dozen websites installed locally which you need to do work with on a regular basis so won&#8217;t want to go through setting up websites again (nightmare).</p>
<p>Up until recently the agency I work for used a combination of mainly Bitbucket but with some held with Github and decided to consolidate them under Gitlab instead.</p>
<p>The process I followed to update my local copies of these Dev sites was pretty simple;</p>
<ol>
<li>Open Terminal and navigate to the sites working directory, for example
<pre><code>$ /Applications/MAMP/htdocs/myproject</code></pre>
</li>
<li>Then I listed the existing remote URLs to check where they are currently pointed, and so whether they need to be updated (good to check that I hadn&#8217;t already updated it)
<pre><code>$ git remote -v
origin  git@bitbucket.org:USERNAME/REPOSITORY.git (fetch)
origin  git@bitbucket.org:USERNAME/REPOSITORY.git (push)
</code></pre>
</li>
<li>Now change the remote&#8217;s URL from Bitbucket to Gitlab with the <code>git remote set-url</code> command.
<pre><code>$ git remote set-url origin git@gitlab.com:USERNAME/REPOSITORY.git.git</code></pre>
</li>
<li>I then verified that the remote URL had been updated.
<pre><code>$ git remote -v
origin  git@gitlab.com:USERNAME/REPOSITORY.git (fetch)
origin  git@gitlab.com:USERNAME/REPOSITORY.git (push)
</code></pre>
</li>
</ol>
<p>That wasn&#8217;t such a chore now was it? Finally you can grab any updates which may have been made to the repository since the last time you grabbed a copy by using <code>git fetch</code></p><p>The post <a href="https://www.chriswalton.co.uk/changing-a-local-git-repo-origin/">Changing a Local Git Repo Origin</a> first appeared on <a href="https://www.chriswalton.co.uk">Chris Walton</a>.</p>]]></content:encoded>
					
					<wfw:commentRss>https://www.chriswalton.co.uk/changing-a-local-git-repo-origin/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>I really need to do something about this website</title>
		<link>https://www.chriswalton.co.uk/i-really-need-to-do-something-about-this-website/</link>
					<comments>https://www.chriswalton.co.uk/i-really-need-to-do-something-about-this-website/#respond</comments>
		
		<dc:creator><![CDATA[chris]]></dc:creator>
		<pubDate>Sat, 31 Dec 2016 15:02:16 +0000</pubDate>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Web Development]]></category>
		<guid isPermaLink="false">http://www.chriswalton.co.uk/?p=490</guid>

					<description><![CDATA[<p>As we go into a New Year there is one thing on my mind right now, I really need to do something about this website…</p>
<p>The post <a href="https://www.chriswalton.co.uk/i-really-need-to-do-something-about-this-website/">I really need to do something about this website</a> first appeared on <a href="https://www.chriswalton.co.uk">Chris Walton</a>.</p>]]></description>
										<content:encoded><![CDATA[<p>As we go into a New Year there is one thing on my mind right now, I really need to do something about this website…</p>
<p>After over 3 years working in an agency building fully responsive Foundation based websites its finally time to start considering pulling this site down and replacing it with something a little bit more modern!</p>
<p>Oh and Happy New Year! Hope 2017 is great for all!</p><p>The post <a href="https://www.chriswalton.co.uk/i-really-need-to-do-something-about-this-website/">I really need to do something about this website</a> first appeared on <a href="https://www.chriswalton.co.uk">Chris Walton</a>.</p>]]></content:encoded>
					
					<wfw:commentRss>https://www.chriswalton.co.uk/i-really-need-to-do-something-about-this-website/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Working with GIT Tags (the basics)</title>
		<link>https://www.chriswalton.co.uk/working-with-git-tags/</link>
					<comments>https://www.chriswalton.co.uk/working-with-git-tags/#respond</comments>
		
		<dc:creator><![CDATA[chris]]></dc:creator>
		<pubDate>Sat, 17 Dec 2016 16:46:27 +0000</pubDate>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Web Development]]></category>
		<guid isPermaLink="false">http://www.chriswalton.co.uk/?p=442</guid>

					<description><![CDATA[<p>If you are working with Git to keep track of project changes you then using tags is key to be able to keep track of your release versions amongst your commits (i.e. version 1.0, 2.0, 2.1 etc).</p>
<p>Now you can use a Git GUI like Gitkraken to manage this easily however I think it is important to also know how to do it through Command Line.</p>
<p>The post <a href="https://www.chriswalton.co.uk/working-with-git-tags/">Working with GIT Tags (the basics)</a> first appeared on <a href="https://www.chriswalton.co.uk">Chris Walton</a>.</p>]]></description>
										<content:encoded><![CDATA[<p>If you are working with Git to keep track of project changes you then using tags is key to be able to keep track of your release versions amongst your commits (i.e. version 1.0, 2.0, 2.1 etc).</p>
<p>Now you can use a Git GUI like Gitkraken to manage this easily however I think it is important to also know how to do it through Command Line.</p>
<p>To list your currently available tags in Git perform the following&#8217;</p>
<pre class="highlight"><code class="language-console" data-lang="console">$ git tag
1.0.0
1.1.0
1.1.1
2.0.0
</code></pre>
<p>The general reasoning behind the version number format is to state a MAJOR.MINOR.PATCH or BUGFIX so in the example above version 1.1.0 introduced minor but substantial changes to the project in hand, version 1.1.1 fixed some minor bugs or applied a security patch (for example) and version 2.0.0 introduced some major updates to that project.</p>
<p>To create a new new tag do the following</p>
<pre class="highlight"><code class="language-console" data-lang="console">$ git tag -a 2.1.0 -m 'v2.1.0</code></pre>
<p>And then you can push to your remote repository</p>
<pre class="highlight"><code class="language-console" data-lang="console">$ git push --tags origin master</code></pre>
<p>If you need to removed the current tag version for whatever reason</p>
<pre class="highlight"><code class="language-console" data-lang="console">$ git tag -d 2.1.0

Deleted tag '2.1.0' (was 074205)</code></pre>
<p>Remove the current tag version remotely</p>
<pre class="highlight"><code class="language-console" data-lang="console">$ git push origin :refs/tags/2.1.0

To git@bitbucket.org:webtise/sagepaysuitepro.git

- [deleted] 2.1.0
</code></pre>
<p>There is alot more to tagging but this covers the day to day basics.</p><p>The post <a href="https://www.chriswalton.co.uk/working-with-git-tags/">Working with GIT Tags (the basics)</a> first appeared on <a href="https://www.chriswalton.co.uk">Chris Walton</a>.</p>]]></content:encoded>
					
					<wfw:commentRss>https://www.chriswalton.co.uk/working-with-git-tags/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<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 a Magento Custom Category Attribute to have a WYSIWYG editor</title>
		<link>https://www.chriswalton.co.uk/updating-a-magento-custom-category-attribute-to-have-a-wysiwyg-editor/</link>
					<comments>https://www.chriswalton.co.uk/updating-a-magento-custom-category-attribute-to-have-a-wysiwyg-editor/#respond</comments>
		
		<dc:creator><![CDATA[chris]]></dc:creator>
		<pubDate>Wed, 09 Nov 2016 15:50:39 +0000</pubDate>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Web Development]]></category>
		<guid isPermaLink="false">http://www.chriswalton.co.uk/?p=455</guid>

					<description><![CDATA[<p>So you have created yourself a new text area attribute using something like the the <a href="http://gauss-development.com/blog/tutorials/adding-custom-category-attributes-magento/">Gauss Development.com</a> method, and now you want to use a WYSIWIG editor to make updating your attribute easier&#8230;</p>
<p>The post <a href="https://www.chriswalton.co.uk/updating-a-magento-custom-category-attribute-to-have-a-wysiwyg-editor/">Updating a Magento Custom Category Attribute to have a WYSIWYG editor</a> first appeared on <a href="https://www.chriswalton.co.uk">Chris Walton</a>.</p>]]></description>
										<content:encoded><![CDATA[<p>So you have created yourself a new text area attribute using something like the the <a href="http://gauss-development.com/blog/tutorials/adding-custom-category-attributes-magento/">Gauss Development.com</a> method, and now you want to use a WYSIWIG editor to make updating your attribute easier… No problem, simply fire up your database in PHP MyAdmin, Sequel Pro (etc) and run through the following;</p>
<ol>
<li>Find the <code>attribute_id</code> of the your custom attribute from the <code>eav_attribute</code> table</li>
<li>Open the table <code>catalog_eav_attribute</code> and search for the matching <code>attribute_id</code> from step 1</li>
<li>Update the field <code>is_wysiwyg_enabled</code> to <span style="font-family: monospace;">1</span></li>
</ol>
<p>Happy coding!</p><p>The post <a href="https://www.chriswalton.co.uk/updating-a-magento-custom-category-attribute-to-have-a-wysiwyg-editor/">Updating a Magento Custom Category Attribute to have a WYSIWYG editor</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-a-magento-custom-category-attribute-to-have-a-wysiwyg-editor/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Symbolic links&#8230;</title>
		<link>https://www.chriswalton.co.uk/symbolic-links/</link>
					<comments>https://www.chriswalton.co.uk/symbolic-links/#respond</comments>
		
		<dc:creator><![CDATA[chris]]></dc:creator>
		<pubDate>Mon, 05 Sep 2016 14:37:45 +0000</pubDate>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Web Development]]></category>
		<guid isPermaLink="false">http://www.chriswalton.co.uk/?p=474</guid>

					<description><![CDATA[<p>Sometimes you may want to move a file or directory out of your main website structure, this could be for a number of different reasons but a common one would be to prevent files being lost (for example your sites media/uploads directory) in a site upgrade.</p>
<p>This can be accomplished by creating a symbolic link, also known as a symlink, between the location you want your directory to be stored and the spot where it should be.</p>
<p>The post <a href="https://www.chriswalton.co.uk/symbolic-links/">Symbolic links…</a> first appeared on <a href="https://www.chriswalton.co.uk">Chris Walton</a>.</p>]]></description>
										<content:encoded><![CDATA[<p>Sometimes you may want to move a file or directory out of your main website structure, this could be for a number of different reasons but a common one would be to prevent files being lost (for example your sites media/uploads directory) in a site upgrade.</p>
<p>This can be accomplished by creating a symbolic link, also known as a symlink, between the location you want your directory to be stored and the spot where it should be.</p>
<p>I am going to use the example of a Magento <code>media</code> folder which I am going to moved outside of the <code>http</code> directory and will create a symlink for it.</p>
<pre><code>cd path/to/magento/root/http
ln -s ../media media</code></pre>
<p>Simple, all we do is first put the location of the folder (or file) and then name it in this location.</p>
<p>In doing this we could have renamed the directory in the external location to say <code>___media</code> but it doesn&#8217;t matter as long as the symlink itself is still called <code>media</code></p><p>The post <a href="https://www.chriswalton.co.uk/symbolic-links/">Symbolic links…</a> first appeared on <a href="https://www.chriswalton.co.uk">Chris Walton</a>.</p>]]></content:encoded>
					
					<wfw:commentRss>https://www.chriswalton.co.uk/symbolic-links/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Working with MAMP and Terminal, import and delete a local database</title>
		<link>https://www.chriswalton.co.uk/working-with-mamp-and-terminal-import-and-delete-a-local-database/</link>
					<comments>https://www.chriswalton.co.uk/working-with-mamp-and-terminal-import-and-delete-a-local-database/#respond</comments>
		
		<dc:creator><![CDATA[chris]]></dc:creator>
		<pubDate>Tue, 12 Jul 2016 14:58:02 +0000</pubDate>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Web Development]]></category>
		<guid isPermaLink="false">http://www.chriswalton.co.uk/?p=430</guid>

					<description><![CDATA[<p>Command line, its a scary prospect and not something many of us have gone near since our University days, but its a good knowledge set to learn or refresh on when spending time building and maintaining websites&#8230;</p>
<p>The post <a href="https://www.chriswalton.co.uk/working-with-mamp-and-terminal-import-and-delete-a-local-database/">Working with MAMP and Terminal, import and delete a local database</a> first appeared on <a href="https://www.chriswalton.co.uk">Chris Walton</a>.</p>]]></description>
										<content:encoded><![CDATA[<p>Command line, its a scary prospect and not something many of us have gone near since our University days, but its a good knowledge set to learn or refresh on when spending time building and maintaining websites.</p>
<h3>Import a database</h3>
<p>Importing Databases to your local server is a common activity which is easiest to perform through command line, especially when dealing with larger databases common with platforms like Magento.</p>
<p>So the first thing to do is to pop open a terminal window<br />
<code>/Applications/MAMP/library/bin/mysql -u user_name -p database_name &lt; /Users/user/Documents/database_import.sql</code><br />
You will then be prompted for your mysql server password and after a short (to lengthy) delay your database will have been imported.</p>
<h3>Delete Databases</h3>
<p>In the instance you need to delete a database for whatever reason open up your preferred method of editing your database (PHP MyAdmin, Sequel Pro or Terminal being 3 options) and perform the following</p>
<p><code>DROP DATABASE database_name;</code></p><p>The post <a href="https://www.chriswalton.co.uk/working-with-mamp-and-terminal-import-and-delete-a-local-database/">Working with MAMP and Terminal, import and delete a local 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/working-with-mamp-and-terminal-import-and-delete-a-local-database/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>
