首页 > 解决方案 > 如何在产品的简短描述中添加通用段落。Magento 1

问题描述

我的网站上有很多产品。对于所有这些产品,我想在简短描述之后写上“请联系:xxx-xxx-xx”。我想知道我需要在哪个 php 文件中编辑才能在我的产品描述中添加这个通用段落。

标签: magentomagento-1.9magento-1.4

解决方案


如果你想要它在product listing页面中,那么你将不得不导航到:

app/design/frontend/yourtheme/package/template/catalog/product/list.phtml

在这个文件中寻找这一行:

<?php echo $_helper->productAttribute($_product, $_product->getShortDescription(), 'short_description') ?>

如果要将其添加到product details页面,则应导航至:

app/design/frontend/yourtheme/package/template/catalog/product/view.phtml

并在此行下方添加您的句子:

<div class="short-description">
<div class="std">
<?php echo $_helper->productAttribute($_product, nl2br($_product->getShortDescription()), 'short_description') ?>
</div>

推荐阅读