Sök…


Produktkollektion

$ProductCollection=Mage::getModel('catalog/product')->getCollection();

Välj det specifika attributet

$ProductCollection->addAttributeToSelect(array('name', 'product_url', 'small_image'));

Välja alla attribut

$ProductCollection->addAttributeToSelect('*');

Lägg till filter i samlingen

$ProductCollection->addFieldToFilter('is_active',1);

Lägg till produktattributfilter vid samling

$ProductCollection->addAttributeToFilter('weight', array('gt' => 100));

Sätt order

$ProductCollection->setOrder('id','ASC');

Ställ in gränsen

$ProductCollection->setPageSize(10);

Ställ in aktuell sida

$ProductCollection->setCurPage(1);

Kategori Samling av en specifik butik och specifik nivå

$rootId     = Mage::app()->getStore($storeId)->getRootCategoryId();
$categories = Mage::getModel('catalog/category')->getCollection()
    ->addAttributeToSelect('*')
    ->addFieldToFilter('path', array('like'=> "1/$rootId/%"))
    ->addAttributeToFilter('level', 2)
    ->addAttributeToFilter('is_active', 1);


Modified text is an extract of the original Stack Overflow Documentation
Licensierat under CC BY-SA 3.0
Inte anslutet till Stack Overflow