Zoeken…


Product collectie

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

Het specifieke kenmerk selecteren

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

Selecteren van het All Attribute

$ProductCollection->addAttributeToSelect('*');

Filter toevoegen op verzameling

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

Productkenmerkfilter toevoegen bij verzameling

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

Bestelling instellen

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

Limiet instellen

$ProductCollection->setPageSize(10);

Stel huidige pagina in

$ProductCollection->setCurPage(1);

Categorie Verzameling van een specifieke winkel en specifiek niveau

$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
Licentie onder CC BY-SA 3.0
Niet aangesloten bij Stack Overflow