Magento 类别说明

Magento category description

我有以下问题。 我上面的分类描述(之前的货物)。 我想更改类别描述的位置。这应该在底部(在货物之后)。 我正在使用 magento commerce 1.9

您需要找到类别模板,它应该在您的主题目录中;

app/design/frontend/XXX/YYY/template/catalog/category/view.phtml

其中 XXX YYY 是您正在使用的模板的目录。如果那里没有 view.phtml 文件,magento 将退回到这里的基本版本;

app/design/frontend/base/default/template/catalog/category/view.phtml

如果不存在,我建议您将其复制到您的主题目录中。

现在,打开该文件并找到它;

<?php if($_description=$this->getCurrentCategory()->getDescription()): ?>
<div class="category-description std">
    <?php echo $_helper->categoryAttribute($_category, $_description, 'description') ?>
</div>
<?php endif; ?>

然后只需将其移至文件末尾即可。