Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

What would be the easiest way to do an advanced catalog search for a product and filter by a category and its sub-categories? currently I'm searching on a keyword found in the products title or short description or long description. While this does work when I don't include any categories, I'm lost how to include multiple categories as a filter in my productCollection.

Here is some of the code I'm working w/

    /**
     * Retrieve advanced search product collection
     *
     * @return Mage_CatalogSearch_Model_Mysql4_Advanced_Collection
     */
    public function getProductCollection(){
        if (is_null($this->_productCollection)) {
            $this->_productCollection = Mage::getResourceModel('catalogsearch/advanced_collection')             
                ->addAttributeToSelect(Mage::getSingleton('catalog/config')->getProductAttributes())            
                ->addMinimalPrice()
                ->addStoreFilter();
                Mage::getSingleton('catalog/product_status')->addVisibleFilterToCollection($this->_productCollection);
                Mage::getSingleton('catalog/product_visibility')->addVisibleInSearchFilterToCollection($this->_productCollection);
            /* include category filtering */
/*      
            if ($category = filter_input(INPUT_GET, 'category', FILTER_VALIDATE_INT)) {
                $this->_productCollection->addCategoryFilter(Mage::getModel('catalog/category')->load($category),true);
            }
*/
        }
        return $this->_productCollection;
    }

UPDATE: this is exactly what I'm trying to do - except I need to to search for products in any of the categories not all the categories, product category search

share|improve this question
you can check this thread for multiple categories and you can adjust according to your requirnment – dianuj Sep 30 '12 at 8:58

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.