Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question
In which file and method did you put this code? And have you set the category setting 'is anchor' to true? – Chris Feb 9 at 21:34

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.