<?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>Category &#8211; Techawaken</title>
	<atom:link href="https://www.techawaken.com/tag/category/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, 31 Dec 2015 18:02:00 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<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 find the position of a product in a Magento category</title>
		<link>https://www.techawaken.com/find-position-product-magento-category/</link>
				<comments>https://www.techawaken.com/find-position-product-magento-category/#respond</comments>
				<pubDate>Fri, 11 Dec 2015 18:41:18 +0000</pubDate>
		<dc:creator><![CDATA[Pawan]]></dc:creator>
				<category><![CDATA[Magento]]></category>
		<category><![CDATA[Category]]></category>
		<category><![CDATA[Magento 1.x]]></category>
		<category><![CDATA[Magento 1.x Community]]></category>
		<category><![CDATA[Magento Enterprise 1.x]]></category>
		<category><![CDATA[Position]]></category>

		<guid isPermaLink="false">http://www.techawaken.com/?p=727</guid>
				<description><![CDATA[<p>In Magento you can set the position of the products in a category from Magento admin by following the path <em>Admin &#62;&#62; Catalog &#62;&#62; Categories &#62;&#62; Manage Categories &#62;&#62; Edit a category &#62;&#62; Set the position of the products in the "<strong>Category Products</strong>" tab</em>.<p>
<p>
Let see how we can find the position of a product on the product detail page:
</p>
<pre>

$catId = Mage::registry('current_product')-&#62;getCategoryId();
$category = Mage::getModel('catalog/category')-&#62;load($catId);
$productPositions = Mage::getResourceModel('catalog/category')-&#62;getProductsPosition($category); // This returns all product ids with their position
echo $productPositions[$_product-&#62;getId()]; //Print the product postion

</pre>

<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/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>
<li><a href="https://www.techawaken.com/display-sub-categories-category-page/" rel="bookmark" title="How to display sub-categories on a Category Page">How to display sub-categories on a Category Page </a></li>
</ol></div>
</div>
]]></description>
						<wfw:commentRss>https://www.techawaken.com/find-position-product-magento-category/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
							</item>
		<item>
		<title>How to display sub-categories on a Category Page</title>
		<link>https://www.techawaken.com/display-sub-categories-category-page/</link>
				<comments>https://www.techawaken.com/display-sub-categories-category-page/#comments</comments>
				<pubDate>Thu, 19 Nov 2015 18:42:47 +0000</pubDate>
		<dc:creator><![CDATA[Pawan]]></dc:creator>
				<category><![CDATA[Magento]]></category>
		<category><![CDATA[Category]]></category>
		<category><![CDATA[Magento 1.x]]></category>
		<category><![CDATA[Magento 1.x Admin]]></category>
		<category><![CDATA[Magento Enterprise 1.x]]></category>
		<category><![CDATA[Sub-Category]]></category>

		<guid isPermaLink="false">http://www.techawaken.com/?p=713</guid>
				<description><![CDATA[<p>In one of my project we had a two level category hierarchy. Clicking on the top level category displayed a promotional banner and the sub-categories. The second level category page displayed the products. In this post we will discuss how we can display the subcategories on a category page. We are not going to create any new module.<p>
<p><strong><span style="text-decoration: underline;">STEP 1:</span> Create a PHTML file</strong></p>
<p>First we create a phtml file <em>{{MAGENTO_ROOT}}\app\design\frontend\rwd\mytheme\template\catalog\category\subcategories.phtml</em></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/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/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>
</ol></div>
</div>
]]></description>
						<wfw:commentRss>https://www.techawaken.com/display-sub-categories-category-page/feed/</wfw:commentRss>
		<slash:comments>1</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>
	</channel>
</rss>
