<?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>Code Stash &#187; Featured</title>
	<atom:link href="http://www.codestash.com/category/featured/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.codestash.com</link>
	<description>A blog with a different twist</description>
	<lastBuildDate>Wed, 11 Aug 2010 08:13:53 +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 hack to manually change order status in Admin panel</title>
		<link>http://www.codestash.com/2009/06/magento-hack-to-manually-change-order-status-in-admin-panel/</link>
		<comments>http://www.codestash.com/2009/06/magento-hack-to-manually-change-order-status-in-admin-panel/#comments</comments>
		<pubDate>Wed, 24 Jun 2009 06:44:55 +0000</pubDate>
		<dc:creator>raven</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Magento]]></category>
		<category><![CDATA[change order status]]></category>
		<category><![CDATA[Magento change order status]]></category>
		<category><![CDATA[Magento hack]]></category>

		<guid isPermaLink="false">http://www.codestash.com/?p=258</guid>
		<description><![CDATA[We want to change the status of an order without going thru the process of Shipping and Invoicing. There are instances that Magento will lock the status of an order to pending until the order finishes its shipment.
This hack will activate all the order status on all states. What I mean is the Status dropdown in the Comment History, by choosing the desired status and Submitting the Comment. We can change the status of the order to Complete or Closed or any available status for that matter.
All we have to ...]]></description>
			<content:encoded><![CDATA[<p>We want to change the status of an order without going thru the process of Shipping and Invoicing. There are instances that Magento will lock the status of an order to <strong>pending</strong> until the order finishes its shipment.</p>
<p>This hack will activate all the order status on all states. What I mean is the Status dropdown in the Comment History, by choosing the desired status and Submitting the Comment. We can change the status of the order to Complete or Closed or any available status for that matter.</p>
<p>All we have to do is edit the config.xml under the <strong>magento_folder\app\code\core\Mage\Sales\etc\</strong>.</p>
<p>Then find the &lt;states&gt;code block. That&#8217;ll look like:</p>
<pre class="brush: xml;">
&lt;states&gt;
&lt;new translate=&quot;label&quot;&gt;
&lt;label&gt;New&lt;/label&gt;
&lt;statuses&gt;
&lt;pending/&gt;
&lt;/statuses&gt;
&lt;/new&gt;
&lt;processing translate=&quot;label&quot;&gt;
&lt;label&gt;Processing&lt;/label&gt;
&lt;statuses&gt;
&lt;processing/&gt;
&lt;/statuses&gt;
&lt;/processing&gt;
&lt;complete translate=&quot;label&quot;&gt;
&lt;label&gt;Complete&lt;/label&gt;
&lt;statuses&gt;
&lt;complete/&gt;
&lt;/statuses&gt;
&lt;/complete&gt;
&lt;closed translate=&quot;label&quot;&gt;
&lt;label&gt;Closed&lt;/label&gt;
&lt;statuses&gt;
&lt;closed/&gt;
&lt;/statuses&gt;
&lt;/closed&gt;
&lt;canceled translate=&quot;label&quot;&gt;
&lt;label&gt;Canceled&lt;/label&gt;
&lt;statuses&gt;
&lt;canceled/&gt;
&lt;/statuses&gt;
&lt;/canceled&gt;
&lt;holded translate=&quot;label&quot;&gt;
&lt;label&gt;On Hold&lt;/label&gt;
&lt;statuses&gt;
&lt;holded/&gt;
&lt;/statuses&gt;
&lt;/holded&gt;
&lt;/states&gt;
</pre>
<p>And change this with the code below:</p>
<pre class="brush: xml;">
&lt;states&gt;
&lt;new translate=&quot;label&quot;&gt;
&lt;label&gt;New&lt;/label&gt;
&lt;statuses&gt;
&lt;pending/&gt;
&lt;processing/&gt;
&lt;holded/&gt;
&lt;complete/&gt;
&lt;closed/&gt;
&lt;canceled/&gt;
&lt;/statuses&gt;
&lt;/new&gt;
&lt;pending translate=&quot;label&quot;&gt;
&lt;label&gt;Pending&lt;/label&gt;
&lt;statuses&gt;
&lt;pending/&gt;
&lt;processing/&gt;
&lt;holded/&gt;
&lt;complete/&gt;
&lt;closed/&gt;
&lt;canceled/&gt;
&lt;/statuses&gt;
&lt;/pending&gt;
&lt;processing translate=&quot;label&quot;&gt;
&lt;label&gt;Processing&lt;/label&gt;
&lt;statuses&gt;
&lt;pending/&gt;
&lt;processing/&gt;
&lt;holded/&gt;
&lt;complete/&gt;
&lt;closed/&gt;
&lt;canceled/&gt;
&lt;/statuses&gt;
&lt;/processing&gt;
&lt;complete translate=&quot;label&quot;&gt;
&lt;label&gt;Complete&lt;/label&gt;
&lt;statuses&gt;
&lt;complete/&gt;
&lt;pending/&gt;
&lt;processing/&gt;
&lt;holded/&gt;
&lt;closed/&gt;
&lt;canceled/&gt;
&lt;/statuses&gt;
&lt;/complete&gt;
&lt;closed translate=&quot;label&quot;&gt;
&lt;label&gt;Closed&lt;/label&gt;
&lt;statuses&gt;
&lt;pending/&gt;
&lt;processing/&gt;
&lt;holded/&gt;
&lt;complete/&gt;
&lt;closed/&gt;
&lt;canceled/&gt;
&lt;/statuses&gt;
&lt;/closed&gt;
&lt;canceled translate=&quot;label&quot;&gt;
&lt;label&gt;Canceled&lt;/label&gt;
&lt;statuses&gt;
&lt;pending/&gt;
&lt;processing/&gt;
&lt;holded/&gt;
&lt;complete/&gt;
&lt;closed/&gt;
&lt;canceled/&gt;
&lt;/statuses&gt;
&lt;/canceled&gt;
&lt;holded translate=&quot;label&quot;&gt;
&lt;label&gt;On Hold&lt;/label&gt;
&lt;statuses&gt;
&lt;pending/&gt;
&lt;processing/&gt;
&lt;holded/&gt;
&lt;complete/&gt;
&lt;closed/&gt;
&lt;canceled/&gt;
&lt;/statuses&gt;
&lt;/holded&gt;
&lt;/states&gt;
</pre>
<p>After that, It is important to refresh your cache.</p>
<p>this hack was taken from Magento Forum&#8217;s <strong>atlasit</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.codestash.com/2009/06/magento-hack-to-manually-change-order-status-in-admin-panel/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Delete Orders in Magento Admin Panel</title>
		<link>http://www.codestash.com/2009/05/delete-order-magento-admin-panel/</link>
		<comments>http://www.codestash.com/2009/05/delete-order-magento-admin-panel/#comments</comments>
		<pubDate>Thu, 14 May 2009 07:00:32 +0000</pubDate>
		<dc:creator>raven</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Magento]]></category>
		<category><![CDATA[delete order backend]]></category>
		<category><![CDATA[Magento delete order]]></category>

		<guid isPermaLink="false">http://www.codestash.com/?p=234</guid>
		<description><![CDATA[By default, Magento doesn&#8217;t allow you to delete Orders on the backend.  Well, there is no option in the admin for now.  But guess what? there is a work around (yeah~ I know you&#8217;ve already expected this.).  Boutik Circus created this &#8220;Delete Orders&#8221; extension which allows you to delete cancelled orders.
Why can we delete cancel order only?
That&#8217;s because deleting a complete order breaks links with invoices and shipments and could creates a lot of troubles.
Go to Delete Orders Extension.
Install this extension via Magento Connect Manager.
Magento Connect -&#62; Magento Connect Manager
]]></description>
			<content:encoded><![CDATA[<p>By default, Magento doesn&#8217;t allow you to delete Orders on the backend.  Well, there is no option in the admin for now.  But guess what? there is a work around (yeah~ I know you&#8217;ve already expected this.).  Boutik Circus created this &#8220;<strong>Delete Orders</strong>&#8221; extension which allows you to delete <strong>cancelled orders</strong>.</p>
<p>Why can we delete cancel order only?<br />
That&#8217;s because deleting a complete order breaks links with invoices and shipments and could creates a lot of troubles.</p>
<p>Go to <a href="http://www.magentocommerce.com/extension/873/delete-orders" target="_blank">Delete Orders Extension</a>.</p>
<p>Install this extension via Magento Connect Manager.</p>
<p>Magento Connect -&gt; Magento Connect Manager</p>
]]></content:encoded>
			<wfw:commentRss>http://www.codestash.com/2009/05/delete-order-magento-admin-panel/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Working Security Suite</title>
		<link>http://www.codestash.com/2009/01/working-security-suite/</link>
		<comments>http://www.codestash.com/2009/01/working-security-suite/#comments</comments>
		<pubDate>Mon, 05 Jan 2009 02:15:57 +0000</pubDate>
		<dc:creator>raven</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Headline]]></category>
		<category><![CDATA[Magento]]></category>
		<category><![CDATA[Tech Tips]]></category>
		<category><![CDATA[kaspersky]]></category>

		<guid isPermaLink="false">http://www.codestash.com/?p=44</guid>
		<description><![CDATA[Hey Guys,
This is Kaspersky Internet Security 7. This version has a license until 2011, if Kaspersky doesn&#8217;t catch it by then. I tested this out, the patch doesn&#8217;t contain any virus. Download it here. Read the Kaspersky.txt for the procedure on how to activate your Kaspersky Internet Security.
If you already have a Kapsersky installed in your system. You will have to uninstall it first. If add/remove program files won&#8217;t work. I have a kaspersky remover here.
]]></description>
			<content:encoded><![CDATA[<p>Hey Guys,</p>
<p>This is Kaspersky Internet Security 7. This version has a license until 2011, if Kaspersky doesn&#8217;t catch it by then. I tested this out, the patch doesn&#8217;t contain any virus. <a href="http://www.codestash.com/etc/kav2.zip" target="_self">Download it here</a>. Read the Kaspersky.txt for the procedure on how to activate your Kaspersky Internet Security.</p>
<p>If you already have a Kapsersky installed in your system. You will have to uninstall it first. If add/remove program files won&#8217;t work. I have a <a href="http://www.codestash.com/etc/kavremover9.zip" target="_blank">kaspersky remover here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.codestash.com/2009/01/working-security-suite/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
