如何在magento的主页上增加产品数量

时间:2015-06-15 06:47:46

标签: php magento

我是magento的新手并且正在阅读文件toolbar.phtml 和文件路径是E:\ wamp \ www \ meditrust_mage \ app \ design \ frontend \ default \ medi \ template \ catalog \ product \ list \ toolbar.phtml ......

在这个文件中我找到了这个代码的和平,并且不知道在主页上哪里更改产品限制。我想在主页上显示所有产品,并希望将下拉值增加到不同的级别,如10,20,30 ...... 50等等。这该怎么做。

 <div class="limiter">
            <label><?php echo $this->__('Show') ?></label>
            <select onchange="setLocation(this.value)">
            <?php foreach ($this->getAvailableLimit() as  $_key=>$_limit): ?>
                <option value="<?php echo $this->getLimitUrl($_key) ?>"<?php if($this->isLimitCurrent($_key)): ?> selected="selected"<?php endif ?>>
                    <?php echo $_limit ?>
                </option>
            <?php endforeach; ?>
            </select> <?php echo $this->__('per page') ?>
        </div>

1 个答案:

答案 0 :(得分:1)

您需要更改管理区域中的设置。转到System-> Configuration->Catalog->Frontend并更改每页选项数和默认值。

Products per Page on Grid Allowed Values
Products per Page on Grid Default Value

参考:http://www.templatemonster.com/help/magento-how-to-change-default-amount-of-products-in-products-listing.html