我正在调整现代主题以创建要使用的新主题。
我需要展示顾客购物篮中的所有产品。我有这个代码,目前它最多只显示三个项目。我可以使用不同的命令来代替getRecentItems()
显示篮子中的所有项目吗?我尝试使用getAllItems()
,但这似乎没有做任何事情。
<?php $items = $this->getRecentItems();?>
<?php if(count($items)): ?>
<ol id="cart-header" class="mini-products-list">
<?php foreach($items as $item): ?>
<?php echo $this->getItemHtml($item) ?>
<?php endforeach; ?>
</ol>
<?php else: ?>
<?php echo $this->__('There are no items in your shopping Basket.') ?>
<?php endif ?>
有任何想法吗 ?