Magento出口搜索术语和同义词

时间:2013-10-01 01:05:36

标签: magento search

有没有办法从当前的Magento网站导出到csv搜索词和同义词?我需要能够上传到新的Magento网站。我是Magento的新手,此时我无法在管理员中找到任何内容。除了我能够从管理员的报告部分导出搜索条件。

我们正在使用Magento Connect

提前谢谢。

1 个答案:

答案 0 :(得分:0)

请看一下magento商业指南:

http://www.magentocommerce.com/knowledge-base/entry/popular-search-terms

然后显然你可以使用以下代码作为起点

<h3><?php echo $this->__('Popular Search Terms') ?></h3>
<?php if( sizeof($this->getTerms()) > 0 ): ?>
<div class="box base-mini mini-product-tags">
    <div class="content">
    <ul class="bare-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>
    </div>
</div>
<?php else: ?>
    <div class="note-msg">
        <?php echo $this->__('There are no search terms available.'); ?>
    </div>
<?php endif ?>

希望这有帮助

此外,您可能需要使用以下

$searchCollectino=Mage::getModel('catalogsearch/query')->getCollection()
 ->setPopularQueryFilter()
 ->setPageSize($limit);