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.

I have to load all available products from the particular attribute-set value additionally it needs to filter only the products which are not under particular category/categories. How can i load product collection here. Please help me

share|improve this question

1 Answer

up vote 2 down vote accepted
<?php
$storeId            = Mage::app()->getStore()->getId();
$catalog            = $this->getLayout()->createBlock('catalog/product_list')->setStoreId($storeId);
$collection         = $catalog->getProductCollection()->addAttributeToSelect('*');
$collection->getSelect()->where(category_id != { cat_id } )->limit($this->products_count);

$_productCollection = $collection;
?>

This isn't teste yet and I'm not sure if category_id is the correct value that is used in the database. But it should give you a good start.

share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.