Làm thế nào tôi có thể nhận được danh sách các danh mục của tất cả các sản phẩm trên ưu đãi đặc biệt. Đó là một chút khó khăn. Tôi có thể lấy danh sách các sản phẩm bằng cách sử dụng:
$collection
->addAttributeToFilter(
array(
array('attribute' => 'news_from_date', 'is'=>new Zend_Db_Expr('not null')),
array('attribute' => 'news_to_date', 'is'=>new Zend_Db_Expr('not null'))
)
)
->addAttributeToFilter('news_from_date', array('or'=> array(
0 => array('date' => true, 'to' => $todayEndOfDayDate),
1 => array('is' => new Zend_Db_Expr('null')))
), 'left')
->addAttributeToFilter('news_to_date', array('or'=> array(
0 => array('date' => true, 'from' => $todayStartOfDayDate),
1 => array('is' => new Zend_Db_Expr('null')))
), 'left')
->addAttributeToSort('news_from_date', 'desc');
Nhưng làm thế nào tôi có thể có được danh mục của họ (tốt nhất là danh mục cấp cao nhất).
Cảm ơn.