Obter coleção de produtos a partir de um ID de categoria


18

Estou tentando obter uma coleção de produtos a partir de um ID de categoria. Algumas coisas que tentei estão no bloco:

 $category = Mage::getModel('catalog/category')->load(123)
        ->getProductCollection();

e

    $category = Mage::getModel('catalog/category')->load(123);
    $products = $category->getProductCollection()->addCategoryFilter($category)
                         ->addAttributeToFilter('type_id', 'simple')
                         ->addAttributeToSelect('*');

também tentei fazê-lo a partir do phtml

$oCatId = Mage::getModel('catalog/category')->load(769); 
        $products->addCategoryFilter($oCatId);

Nada disso funciona, mas também não estou vendo nenhum erro. Vi outro post que parece a mesma pergunta: Magento - Obtenha produtos de uma categoria específica, mas esse método também não funcionou para mim. Obrigado por qualquer ajuda!

Respostas:


32

Tente o seguinte:

$products = Mage::getModel('catalog/category')->load($category_id)
 ->getProductCollection()
 ->addAttributeToSelect('*') // add all attributes - optional
 ->addAttributeToFilter('status', 1) // enabled
 ->addAttributeToFilter('visibility', 4) //visibility in catalog,search
 ->setOrder('price', 'ASC'); //sets the order by price

Fonte: http://overlycaffeinated.com/blog/2011/02/get-all-sale-products-from-a-category-in-magento/

Isso deve funcionar porque adiciona o filtro de categoria para você em virtude de já ter a categoria carregada:

Mage_Catalog_Model_Category

public function getProductCollection()
{
    $collection = Mage::getResourceModel('catalog/product_collection')
        ->setStoreId($this->getStoreId())
        ->addCategoryFilter($this);
    return $collection;
}

Espere, ainda não funciona!

Ok, então você pode ter problemas maiores, provavelmente algo sobrescrevendo getProductCollection. Então, vamos tentar contornar esse método de conveniência:

$category = Mage::getModel('catalog/category')->load($category_id);
$products = Mage::getResourceModel('catalog/product_collection')
        ->setStoreId(Mage::app()->getStore()->getId())
        ->addCategoryFilter($category);

Obrigado pela ajuda! Eu me sinto mais perto, mas ainda estou debatendo. Usando seu último método, adicionei foreach ($products as $product) { echo $product->getId(); }e recebo uma série de IDs. No entanto, quando eu echo $product->getName();não tento nada. Eu tentei adicionar ->addAttributeToSelect('*')também, mas não. Obrigado por mais alguma ajuda.
Zac

@philwinkle Existe uma maneira de obter todos os produtos para uma categoria? Estou tendo problemas para conseguir os que estão desativados. Estou usando #Mage::getResourceModel('catalog/product_collection')->setStoreId(Mage::app()->getStore()->getId())->addCategoryFilter($category)->addAttributeToSelect('sku');
Nick Rolando

9

Como carregar uma coleção de produtos com todos os dados necessários para as listas de produtos no front-end:

$_categoryId = 123;
$category = Mage::getModel('catalog/category')->load($_categoryId );
$productCollection = $category->getProductCollection();
$productCollection
        ->addStoreFilter()
        ->setVisibility(Mage::getSingleton('catalog/product_visibility')->getVisibleInCatalogIds())
        ->addMinimalPrice()
        ->addFinalPrice()
        ->addTaxPercents()
        ->addAttributeToSelect(Mage::getSingleton('catalog/config')->getProductAttributes())
        ->addUrlRewrite();

Isso prepara a coleção de produtos para carregar os dados necessários para exibir preços, o link do produto e quaisquer atributos configurados como "usados ​​na lista de produtos", mas não mais.


Como posso limitar os resultados? ->limit(5)não funcionou.
Pedram Behroozi

->setPageSize(5)
Fabian Schmengler

@fschmengler você perder ;depois de $category = Mage::getModel('catalog/category')->load(123)código
Murtuza Zabuawala

5

Este código abaixo fornece uma coleção de produtos da categoria 10.

$categoryId = 10;    
$products = Mage::getSingleton('catalog/category')->load($categoryId)
            ->getProductCollection()
            ->addAttributeToSelect('*');

3

Código para obter a coleção de produtos de um determinado ID de categoria:

$productCollection = Mage::getResourceModel('catalog/product_collection')
                       ->addCategoryFilter($category);

perfeito!!! 1)
SagarPPanchal

onde $ category = $ categoryId?
Lorakeen

2

O trecho de código abaixo é muito mais simples e eficiente do que carregar a coleção e a filtragem de produtos usando seus atributos,

$categoryId = 32; // Replace with your category

$category = Mage::getModel('catalog/category')
                 ->setStoreId(Mage::app()->getStore()->getId())
                 ->load($categoryId);

Mage::register('current_category', $category);

$products = Mage::getSingleton('catalog/layer')->getProductCollection();

echo $products->getSize();

0

No Magento 2, tente esta coleção de categorias esquecer usando o ID da categoria

  $objectManager = \Magento\Framework\App\ObjectManager::getInstance();
  $subCategory =  $objectManager->create('Magento\Catalog\Model\Category')-> 
         load('categorey_id');
  foreach($subCategory as $subcat)
   { 
        print_r($subcat->getData();
  }

-2
<?php

$categoryid = 123; // Category Id

$category = new Mage_Catalog_Model_Category();
$category->load($categoryid);
$collection = $category->getProductCollection();
$collection->addAttributeToSelect('*'); 

foreach ($_productCollection as $_product) { ?>
    <div class="pr_section">
        <div class="pr_desc">
            <a href="<?php echo $_product->getProductUrl(); ?>"><?php echo $_product->getName(); ?></a>
            <?php echo $this->getReviewsSummaryHtml($_product, false, true); // Reviews ?>
                <?php echo $this->getPriceHtml($_product, true) ?>
                <?php echo $_product->getShortDescription();?>

                <?php if(!$_product->canConfigure() && $_product->isSaleable()): ?>
                    <p><button type="button" title="<?php echo Mage::helper('core')->quoteEscape($this->__('Add to Cart')) ?>" class="button btn-cart" onclick="setLocation('<?php echo $this->getAddToCartUrl($_product) ?>')"><span><span><?php echo $this->__('Add to Cart') ?></span></span></button></p>
                <?php elseif($_product->getStockItem() && $_product->getStockItem()->getIsInStock()): ?>
                    <p><a title="<?php echo $this->__('View Details') ?>" class="button btn-cart" href="<?php echo $_product->getProductUrl() ?>"><?php echo $this->__('View Details') ?></a></p>
                <?php else: ?>
                    <p class="availability out-of-stock"><span><?php echo $this->__('Out of stock') ?></span></p>
                <?php endif; ?>
        </div>
        <div class="pr_img">
                <a href="<?php echo $_product->getProductUrl() ?>"><img src="<?php echo $this->helper('catalog/image')->init($_product, 'small_image')->resize(200); ?>" width="200" height="200" alt="" /></a> 
        </div>
<?php } ?>

Obtenha coleção de produtos com detalhes. Espero que seja útil.


11
Acho que o necroposting não era necessário, pois há respostas suficientes para essa pergunta. Além disso, seu uso new Mage_Catalog_Model_Category()é questionável.
Julien Lachal
Ao utilizar nosso site, você reconhece que leu e compreendeu nossa Política de Cookies e nossa Política de Privacidade.
Licensed under cc by-sa 3.0 with attribution required.