-1

「目的」として設定されたカスタム属性によってフィルター処理された製品の新しいビュー テンプレート ファイルを作成する必要があります。

これまでのところ、製品を可視性別にリストするテンプレート ファイルがあります。

<?php
$visibility = array(
  Mage_Catalog_Model_Product_Visibility::VISIBILITY_BOTH,
  Mage_Catalog_Model_Product_Visibility::VISIBILITY_IN_CATALOG
);

$storeId = Mage::app()->getStore()->getId();
$_productCollection = Mage::getResourceModel('reports/product_collection')
    ->addAttributeToSelect('*')
    ->addOrderedQty()
    ->addAttributeToFilter('visibility', $visibility)
    ->setOrder('ordered_qty', 'desc');
?>

「目的」のためにこのコードクエリを作成する方法は?

4

1 に答える 1

1

可視性を追加したのと同じ方法で追加できます。

$_productCollection = Mage::getResourceModel('reports/product_collection')
    ->addAttributeToSelect('*')
    ->addOrderedQty()
    ->addAttributeToFilter('visibility', $visibility)
    ->addAttributeToFilter('purpose', 'weight-loss')
    ->setOrder('ordered_qty', 'desc');
于 2013-09-26T16:35:07.140 に答える