I created a subcategory manage category option in admin.In the "Display Settings" tab of this category, I select a CMS block which I created earlier. This block show products with X category and x attribute.Below is code i used.
$_category = Mage::registry('current_category');
$name = strtolower($_category->getName());
$attribute = Mage::getModel('eav/config')->getAttribute('catalog_product', 'style');
$allOptions = $a`enter code here`ttribute->getSource()->getAllOptions(true, true);
$brandOptId = '';
foreach ($allOptions as $brand)
{
if(!empty($brand['label']))
{
$brandname = trim($brand['label']);
$brname = strtolower(str_replace(" ","",$brandname));
if($name == $brname)
{
$brandOptId = $brand['value'];
break;
}
}
}
$catid = 33;
$category = Mage::getModel('catalog/category')->load($catid);
$_productCollection = Mage::getModel('catalog/product')->getCollection();
$_productCollection->addAttributeToSelect('*')->addFieldToFilter('style',array('eq' => $brandOptId))->addCategoryFilter($category)->addStoreFilter()->setPageSize(30)->setCurPage(1);
Mage::getSingleton('catalog/product_visibility')->addVisibleInCatalogFilterToCollection($_productCollection);
$toolbar = $this->getToolbarBlock();
$toolbar->setCollection($_productCollection);
Above code show results without layered navigation . Can anybody tell me why layered navigation not showing in left side ?? Thanks