我正在调整现代主题以创建一个新主题.我对Magento比较新,但我发现它是一个很好的电子商务平台.这是我的问题:
我需要在客户购物篮中显示所有产品.我有这个代码,目前它只显示三个项目.我可以使用不同的命令而不是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 ?>
有任何想法吗 ?
签入系统>配置>结帐>购物车侧栏
原文链接:https://www.f2er.com/php/138093.html有一个设置可以设置迷你购物车中可见的产品数量.
最大显示最近添加的项目默认为3.将其增加到您想要的值,或者更确切地说是一个高数字,以便始终显示购物车中的所有产品.
编辑:要根据您的评论覆盖默认的magento行为,您可以使用以下内容.
<?PHP $session= Mage::getSingleton('checkout/session'); $items = $session->getQuote()->getAllItems(); ?> <?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 ?>