Magento流行的搜索小部件只显示10个术语

时间:2012-02-16 23:21:05

标签: magento search

如何仅显示十大热门搜索字词?另外,有没有办法将所有搜索字词的“以建议条件显示”设置为“否”?

<?php if( sizeof($this->getTerms()) > 0 ): ?>
    <ul class="tags-list">
        <?php foreach ($this->getTerms() as $_term): ?>
            <li><a href="<?php echo $this->getSearchUrl($_term) ?>" style="font-size:<?php echo $_term->getRatio()*70+75 ?>%;"><?php echo $this->htmlEscape($_term->getName()) ?></a></li>
        <?php endforeach; ?>
    </ul>
<?php else: ?>
    <p class="note-msg"`enter code here`><?php echo $this->__('There are no search terms available.'); ?></p>
<?php endif; ?>

0 个答案:

没有答案