<?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>Products &#8211; Techawaken</title>
	<atom:link href="https://www.techawaken.com/tag/products/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.techawaken.com</link>
	<description>Techawaken shares articles and experience in PHP, MySql, Magento,Joomla, Wordpress, JQuery, Javascript etc.</description>
	<lastBuildDate>Thu, 14 Apr 2016 14:09:41 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>How to get low stock product notifications in Magento?</title>
		<link>https://www.techawaken.com/stock-product-notifications-magento/</link>
				<comments>https://www.techawaken.com/stock-product-notifications-magento/#comments</comments>
				<pubDate>Mon, 15 Feb 2016 13:57:37 +0000</pubDate>
		<dc:creator><![CDATA[Pawan]]></dc:creator>
				<category><![CDATA[Magento]]></category>
		<category><![CDATA[Inventory]]></category>
		<category><![CDATA[Magento 1.x]]></category>
		<category><![CDATA[Magento 1.x Admin]]></category>
		<category><![CDATA[Magento 1.x Community]]></category>
		<category><![CDATA[Magento Enterprise 1.x]]></category>
		<category><![CDATA[Products]]></category>
		<category><![CDATA[RSS]]></category>
		<category><![CDATA[Stock]]></category>

		<guid isPermaLink="false">http://www.techawaken.com/?p=742</guid>
				<description><![CDATA[<p>Magento provides RSS feed for low inventory alerts. Lets us discuss how to subscribe to the feed.</p>
<p>First we need to set up the inventory level of a product at which it will be considered as low stock.
    <ol>
        <li>Login to admin and navigate to System >> Configuration</li>
         <li>Scroll down to the Catalog tab and click the Inventory section to open it. Now expand the 'Product Stock Options' section.</li>
         <li>Set Manage Stock as 'Yes' and add a value for 'Notify for Quantity Below', save the configuration. Note that you do not set 'Notify for Quantity Below' as 0 as it disables the RSS feed.</li>
    </ol>
</p><div class='yarpp-related-rss'>
<div id="related">
You Might Also Like<ol>
<li><a href="https://www.techawaken.com/setchange-position-products-product-listing-page-magento/" rel="bookmark" title="How to set/change the position of products in product listing page in Magento?">How to set/change the position of products in product listing page in Magento? </a></li>
<li><a href="https://www.techawaken.com/find-position-product-magento-category/" rel="bookmark" title="How to find the position of a product in a Magento category">How to find the position of a product in a Magento category </a></li>
<li><a href="https://www.techawaken.com/change-default-sorting-product-listing-page-magento/" rel="bookmark" title="How to change the default sorting on product listing page in Magento?">How to change the default sorting on product listing page in Magento? </a></li>
</ol></div>
</div>
]]></description>
						<wfw:commentRss>https://www.techawaken.com/stock-product-notifications-magento/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
							</item>
		<item>
		<title>How to get the child block object in .phtml file in Magento</title>
		<link>https://www.techawaken.com/child-block-object-phtml-file-magento/</link>
				<comments>https://www.techawaken.com/child-block-object-phtml-file-magento/#respond</comments>
				<pubDate>Fri, 25 Dec 2015 18:00:29 +0000</pubDate>
		<dc:creator><![CDATA[Pawan]]></dc:creator>
				<category><![CDATA[Magento]]></category>
		<category><![CDATA[Category]]></category>
		<category><![CDATA[Child Block]]></category>
		<category><![CDATA[Layout Update]]></category>
		<category><![CDATA[Magento 1.x]]></category>
		<category><![CDATA[Products]]></category>
		<category><![CDATA[Products Listing]]></category>

		<guid isPermaLink="false">http://www.techawaken.com/?p=729</guid>
				<description><![CDATA[<p>
In one of our projects, the requirement was to have a different layout for some category pages. So, we decided to use a different template file for these categories. We added the following code in the "Custom Layout Update" field for these categories in admin.
</p>

<pre>
 &#60;reference name=&#34;category.products&#34;&#62;
    &#60;action method=&#34;setTemplate&#34;&#62;
        &#60;template&#62;catalog/category/custom-category.phtml&#60;/template&#62;
    &#60;/action&#62;
&#60;/reference&#62;
</pre>



<p>
These category pages need to show the products in a different layout.
</p><div class='yarpp-related-rss'>
<div id="related">
You Might Also Like<ol>
<li><a href="https://www.techawaken.com/display-products-category-cms-static-block/" rel="bookmark" title="How to display products from a category in a CMS static block">How to display products from a category in a CMS static block </a></li>
<li><a href="https://www.techawaken.com/move-js-file-includes-footer-magento/" rel="bookmark" title="How to move the JS file includes to footer in Magento">How to move the JS file includes to footer in Magento </a></li>
<li><a href="https://www.techawaken.com/set-data-magento-layout-update-xml-templates/" rel="bookmark" title="How to set data in Magento Layout Update XML to make it available for use in templates">How to set data in Magento Layout Update XML to make it available for use in templates </a></li>
</ol></div>
</div>
]]></description>
						<wfw:commentRss>https://www.techawaken.com/child-block-object-phtml-file-magento/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
							</item>
		<item>
		<title>How to display products from a category in a CMS static block</title>
		<link>https://www.techawaken.com/display-products-category-cms-static-block/</link>
				<comments>https://www.techawaken.com/display-products-category-cms-static-block/#respond</comments>
				<pubDate>Mon, 09 Nov 2015 20:56:01 +0000</pubDate>
		<dc:creator><![CDATA[Pawan]]></dc:creator>
				<category><![CDATA[Magento]]></category>
		<category><![CDATA[Category]]></category>
		<category><![CDATA[CMS Static Block]]></category>
		<category><![CDATA[Magento 1.x]]></category>
		<category><![CDATA[Magento Enterprise 1.x]]></category>
		<category><![CDATA[Products]]></category>
		<category><![CDATA[Products Listing]]></category>

		<guid isPermaLink="false">http://www.techawaken.com/?p=712</guid>
				<description><![CDATA[<p>There might have been a situation when you would have created a special category like "Sale Products" or "Featured Products"... and you had wanted to display products from these categories on some page like Home Pages using the CMS static block.<p>

<p>In order to achieve this you may create a CMS static block and add the following segment of code:</p>

<pre>

{{block type="catalog/product_list" name="product_list" category_id="2" column_count="4" template="catalog/product/list.phtml" }}

</pre>



<p>This will display the products listing page as a block on the page.</p><div class='yarpp-related-rss'>
<div id="related">
You Might Also Like<ol>
<li><a href="https://www.techawaken.com/setchange-position-products-product-listing-page-magento/" rel="bookmark" title="How to set/change the position of products in product listing page in Magento?">How to set/change the position of products in product listing page in Magento? </a></li>
<li><a href="https://www.techawaken.com/add-1000-products-magento-admin-category-management-interface/" rel="bookmark" title="Cannot add more than 1000 products using Magento admin category management interface">Cannot add more than 1000 products using Magento admin category management interface </a></li>
<li><a href="https://www.techawaken.com/changing-position-text-default-sort-by-dropdown-product-listing-page-magento/" rel="bookmark" title="Changing the &#8220;Position&#8221; text to &#8220;Default&#8221; in the &#8220;Sort By&#8221; dropdown on product listing page in Magento">Changing the &#8220;Position&#8221; text to &#8220;Default&#8221; in the &#8220;Sort By&#8221; dropdown on product listing page in Magento </a></li>
</ol></div>
</div>
]]></description>
						<wfw:commentRss>https://www.techawaken.com/display-products-category-cms-static-block/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
							</item>
		<item>
		<title>How to change the default sorting on product listing page in Magento?</title>
		<link>https://www.techawaken.com/change-default-sorting-product-listing-page-magento/</link>
				<comments>https://www.techawaken.com/change-default-sorting-product-listing-page-magento/#respond</comments>
				<pubDate>Sun, 21 Sep 2014 19:19:22 +0000</pubDate>
		<dc:creator><![CDATA[Pawan]]></dc:creator>
				<category><![CDATA[Magento]]></category>
		<category><![CDATA[Catalog]]></category>
		<category><![CDATA[Magento 1.x]]></category>
		<category><![CDATA[Magento 1.x Admin]]></category>
		<category><![CDATA[Products]]></category>
		<category><![CDATA[Products Listing]]></category>

		<guid isPermaLink="false">http://www.techawaken.com/?p=616</guid>
				<description><![CDATA[In Magento you can change the default sorting attribute for product listing page from Magento admin.

To set the sorting attribute login to Magento admin and follow the following steps:

1. Go to Admin >> System >> Configuration >> Catalog
2. Expand the "Frontend"  Section
3. Make selection from the "Product Listing Sort by" dropdown
4. Click the "Save Config" button.<div class='yarpp-related-rss'>
<div id="related">
You Might Also Like<ol>
<li><a href="https://www.techawaken.com/setchange-position-products-product-listing-page-magento/" rel="bookmark" title="How to set/change the position of products in product listing page in Magento?">How to set/change the position of products in product listing page in Magento? </a></li>
<li><a href="https://www.techawaken.com/change-logo-image-magento/" rel="bookmark" title="How to change the logo image in Magento">How to change the logo image in Magento </a></li>
<li><a href="https://www.techawaken.com/magento-use-web-server-rewrite-set-yes-home-page-loads-pages-give-404-error/" rel="bookmark" title="Magento: After &#8220;Use Web Server Rewrite&#8221; is set to yes, home page loads but other pages give 404 error.">Magento: After &#8220;Use Web Server Rewrite&#8221; is set to yes, home page loads but other pages give 404 error. </a></li>
</ol></div>
</div>
]]></description>
						<wfw:commentRss>https://www.techawaken.com/change-default-sorting-product-listing-page-magento/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
							</item>
		<item>
		<title>How to set/change the position of products in product listing page in Magento?</title>
		<link>https://www.techawaken.com/setchange-position-products-product-listing-page-magento/</link>
				<comments>https://www.techawaken.com/setchange-position-products-product-listing-page-magento/#respond</comments>
				<pubDate>Fri, 29 Aug 2014 13:56:41 +0000</pubDate>
		<dc:creator><![CDATA[Pawan]]></dc:creator>
				<category><![CDATA[Magento]]></category>
		<category><![CDATA[Catalog]]></category>
		<category><![CDATA[Magento 1.x]]></category>
		<category><![CDATA[Magento 1.x Admin]]></category>
		<category><![CDATA[Products]]></category>
		<category><![CDATA[Products Listing]]></category>

		<guid isPermaLink="false">http://www.techawaken.com/?p=615</guid>
				<description><![CDATA[In order to promote certain products, you may want to place them at the top in the category product listing page. Lets see how to set/change the position of the products from Magento admin.

To set/change the position of the products proceed as below:

1. Login Magento admin and follow the path Admin >> Catalog >> Manage Categories.
2. Click on a category in the category tree to display the category related information.<div class='yarpp-related-rss'>
<div id="related">
You Might Also Like<ol>
<li><a href="https://www.techawaken.com/add-1000-products-magento-admin-category-management-interface/" rel="bookmark" title="Cannot add more than 1000 products using Magento admin category management interface">Cannot add more than 1000 products using Magento admin category management interface </a></li>
<li><a href="https://www.techawaken.com/deleting-customer-data-magento/" rel="bookmark" title="Deleting customer data in Magento">Deleting customer data in Magento </a></li>
<li><a href="https://www.techawaken.com/change-logo-image-magento/" rel="bookmark" title="How to change the logo image in Magento">How to change the logo image in Magento </a></li>
</ol></div>
</div>
]]></description>
						<wfw:commentRss>https://www.techawaken.com/setchange-position-products-product-listing-page-magento/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
							</item>
	</channel>
</rss>
