在 /app/design/frontend/default/[theme]/template/catalog/product/list.phtml 中,您有以下代码片段循环并显示$_productCollection内容。
<?php $_collectionSize = $_productCollection->count() ?>
<?php $_columnCount = $this->getColumnCount(); ?>
<?php $i=0; foreach ($_productCollection as $_product): ?>
...
<?php endif; ?>
我想知道的是如何按产品类型对 $_productCollection 进行排序。最终我想要的是首先展示可配置的产品,然后是简单的产品。
帮助将不胜感激。
干杯!