views:

142

answers:

2

I'm trying to show add some filters on my store, but they have a nasty side effect.

Suppose I have product type A and B. Now I want to only show A where color = blue/red.

$collection = Mage::getResourceModel('catalog/product_collection')
    ->setStoreId($this->getStoreId())
    ->addCategoryFilter($this)
    ->addAttributeToFilter(array(
          array('attribute' => 'color', 'in' => array(4, 6)),
    )
    );

This does the trick, but now because product type B has no value assigned to color(since this attribute isn't appointed to it) no products fo this type show up.

I had found this code on the forum http://www.magentocommerce.com/boards/viewthread/178309 , but it doesn't work:

array('attribute' => 'color', 'is' => new Zend_Db_Expr('null'))

Neither does:

array('attribute' => 'color', 'null' => true),

That actually shows products wich have the attribute assigned but with no value declared ...

I also tried adding:

array('attribute' => 'price', 'gteq' => 0), 

Because I figured these statements were connected with 'OR' (according to the documentation) but even that only adds product types wich have the attribute assigned ...

Note that these values come from a drop down list, not sure if that matters though.

A: 

Offhand, give this a shot:

$collection = Mage::getResourceModel('catalog/product_collection')
    ->setStoreId($this->getStoreId())
    ->addCategoryFilter($this)
    ->addAttributeToFilter(array(array('attribute' => 'color', 'in' => array(4, 6)),'left')
);
Joseph Mastey
This gives me an error stating "Invalid attribute name" ...
Rakward
I had to add an ) by the way, and depending on where I added it I got that error or simply not the desired result
Rakward
A: 

Solved this problem by codehack;

Rakward