Lọc bộ sưu tập sản phẩm theo thuộc tính khác trong Bộ sưu tập sản phẩm, ví dụ: 'attribX', mảng ('gt' => 'attrib-Y')
Khi sử dụng bộ sưu tập sản phẩm như vậy: $_productCollection= Mage::getModel('catalog/product')->getCollection() ->addAttributeToSelect('*') ->addAttributeToFilter('special_price', array('neq'=>'')); Có thể sử dụng addAttributionToFilter trên một thuộc tính so với thuộc tính khác không? ví dụ: Tôi có thể lọc Special_price lớn hơn giá bằng thứ gì đó như $_productCollection= Mage::getModel('catalog/product')->getCollection() ->addAttributeToSelect('*') ->addAttributeToFilter('special_price', array('gt'=>'price'));