I have a CMS Page named Home, with the following code within the Design->Layout Update Xml
<reference name="content">
<block type="core/template" template="homepage/home.phtml">
<reference name="featured">
<block type="catalog/product_list" name="featured" template="catalog/product/list.phtml">
<action method="setCategoryId"><category_id>2</category_id></action>
<action method="setColumnCount"><count>5</count></action>
</block>
</reference>
</block>
</reference>
and this within homepage/home.phtml
<div class="container home">
<div class="promo">
// Promo Here
</div>
<?php echo $this->getChildHtml('featured'); ?>
</div>
My main goal is trying to get the featured block inserted into the homepage/home.phtml template, but with the current layout xml in the CMS Page above it is not showing.
All help is greatly appreciated.
There are issue in xml files, i have modify ... the code
Rest of all same..