【发布时间】:2018-11-23 09:44:12
【问题描述】:
我想显示具有类别位置的高级搜索产品, 但我不知道我需要为此调用哪个事件。
【问题讨论】:
标签: php magento2 advanced-search
我想显示具有类别位置的高级搜索产品, 但我不知道我需要为此调用哪个事件。
【问题讨论】:
标签: php magento2 advanced-search
这是按类别位置对产品进行排序的代码。
$this->_productCollection->getSelect()
->joinLeft(
['category' => 'catalog_category_product', 'cp' => 'catalog_category_entity'],
'e.entity_id = category.product_id',
['category.category_id']
)
->joinLeft(
['cp' => 'catalog_category_entity'],
'category.category_id = cp.entity_id',
['cp.position']
)->group('e.entity_id');
$this->_productCollection->getSelect()->order(
'cp.position ' . $this->getCurrentDirectionReverse()
);
【讨论】: