<?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>John Doe and Company</title>
	<atom:link href="http://www.johndoeco.com/feed" rel="self" type="application/rss+xml" />
	<link>http://www.johndoeco.com</link>
	<description>Your identity is our business.</description>
	<lastBuildDate>Thu, 19 Jan 2012 07:18:25 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Change Magento&#8217;s Default Page Layout</title>
		<link>http://www.johndoeco.com/change-magentos-default-page-layout</link>
		<comments>http://www.johndoeco.com/change-magentos-default-page-layout#comments</comments>
		<pubDate>Mon, 16 Jan 2012 21:20:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Magento]]></category>

		<guid isPermaLink="false">http://www.johndoeco.com/?p=637</guid>
		<description><![CDATA[Simply edit your current themes page.xml file. app &#62; design &#62; frontend &#62; themename &#62; subtheme &#62; layout &#62; page.xml Edit &#60;block type=&#8221;page/html&#8221; name=&#8221;root&#8221; output=&#8221;toHtml&#8221; template=&#8221;page/3columns.phtml&#8221;&#62; Approximately Line 28 edit and replace with &#60;block type=&#8221;page/html&#8221; name=&#8221;root&#8221; output=&#8221;toHtml&#8221; template=&#8221;page/2columns-left.phtml&#8221;&#62; or desired page template. The Default Templates are : 1column.phtml 2columns-left.phtml 2columns-right.phtml 3columns.phtml]]></description>
			<content:encoded><![CDATA[<p>Simply edit your current themes page.xml file.</p>
<p>app &gt; design &gt; frontend &gt; themename &gt; subtheme &gt; layout &gt; page.xml</p>
<p>Edit</p>
<p>&lt;block type=&#8221;page/html&#8221; name=&#8221;root&#8221; output=&#8221;toHtml&#8221; template=&#8221;page/3columns.phtml&#8221;&gt;<br />
Approximately Line 28 edit</p>
<p>and replace with</p>
<p>&lt;block type=&#8221;page/html&#8221; name=&#8221;root&#8221; output=&#8221;toHtml&#8221; template=&#8221;page/2columns-left.phtml&#8221;&gt;</p>
<p>or desired page template. The Default Templates are :</p>
<p>1column.phtml</p>
<p>2columns-left.phtml</p>
<p>2columns-right.phtml</p>
<p>3columns.phtml</p>
]]></content:encoded>
			<wfw:commentRss>http://www.johndoeco.com/change-magentos-default-page-layout/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Quantity Box on Product List Page</title>
		<link>http://www.johndoeco.com/quantity-box-on-product-list-page</link>
		<comments>http://www.johndoeco.com/quantity-box-on-product-list-page#comments</comments>
		<pubDate>Sun, 15 Jan 2012 09:20:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Magento]]></category>

		<guid isPermaLink="false">http://www.johndoeco.com/?p=626</guid>
		<description><![CDATA[To add quantity box on Product Listing Page you need to editapp/design/frontend/default/YourTheme/template/catalog/product/list.phtml file Find the below given line &#60;button type="button" title="&#60;?php echo $this-&#62;__('Add to Cart') ?&#62;" onclick="setLocation('&#60;?php echo $this-&#62;getAddToCartUrl($_product) ?&#62;')"&#62;&#60;span&#62;&#60;span&#62;&#60;?php echo $this-&#62;__('Add to Cart') ?&#62;&#60;/span&#62;&#60;/span&#62;&#60;/button&#62; And just replace it with, &#60;form action="&#60;?php echo $this-&#62;getAddToCartUrl($_product) ?&#62;" method="post" id="product_addtocart_form_&#60;?php echo $_product-&#62;getId()?&#62;"&#60;?php if($_product-&#62;getOptions()): ?&#62; enctype="multipart/form-data"&#60;?php endif; ?&#62;&#62; &#60;?php if(!$_product-&#62;isGrouped()): [...]]]></description>
			<content:encoded><![CDATA[<p>To add quantity box on Product Listing Page you need to edit<code>app/design/frontend/default/YourTheme/template/catalog/product/list.phtml</code> file</p>
<p>Find the below given line</p>
<p><code>&lt;button type="button" title="&lt;?php echo $this-&gt;__('Add to Cart') ?&gt;" onclick="setLocation('&lt;?php echo $this-&gt;getAddToCartUrl($_product) ?&gt;')"&gt;&lt;span&gt;&lt;span&gt;&lt;?php echo $this-&gt;__('Add to Cart') ?&gt;&lt;/span&gt;&lt;/span&gt;&lt;/button&gt;</code></p>
<p>And just replace it with,</p>
<p><code></p>
<pre>&lt;form action="&lt;?php echo $this-&gt;getAddToCartUrl($_product) ?&gt;" method="post" id="product_addtocart_form_&lt;?php echo $_product-&gt;getId()?&gt;"&lt;?php if($_product-&gt;getOptions()): ?&gt; enctype="multipart/form-data"&lt;?php endif; ?&gt;&gt;
 &lt;?php if(!$_product-&gt;isGrouped()): ?&gt;
 &lt;label for="qty"&gt;&lt;?php echo $this-&gt;__('Qty') ?&gt;:&lt;/label&gt;
 &lt;input type="text" name="qty" id="qty" maxlength="12" value="&lt;?php echo ($this-&gt;getMinimalQty($_product)?$this-&gt;getMinimalQty($_product):1) ?&gt;" /&gt;
 &lt;?php endif; ?&gt;
 &lt;button type="button" onclick="this.form.submit()"&gt;&lt;span&gt;&lt;span&gt;&lt;span&gt;&lt;?php echo $this-&gt;__('Add to Cart') ?&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/button&gt;
 &lt;/form&gt;</pre>
<p></code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.johndoeco.com/quantity-box-on-product-list-page/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hello world!</title>
		<link>http://www.johndoeco.com/hello-world</link>
		<comments>http://www.johndoeco.com/hello-world#comments</comments>
		<pubDate>Fri, 29 Jul 2011 08:05:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.johndoeco.com/?p=1</guid>
		<description><![CDATA[Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!]]></description>
			<content:encoded><![CDATA[<p>Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.johndoeco.com/hello-world/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

