0

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

我们正在使用 Magento Connect

先感谢您。

4

1 回答 1

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);
于 2013-10-01T07:42:06.977 回答