【问题标题】:How to add a common paragraph in Short description of product . Magento 1如何在产品的简短描述中添加通用段落。 Magento 1
【发布时间】:2019-10-24 07:10:39
【问题描述】:
我的网站上有很多产品。对于所有这些产品,我想在简短描述之后写上“请联系:xxx-xxx-xx”。我想知道我需要在哪个 php 文件中编辑才能在我的产品描述中添加这个通用段落。
【问题讨论】:
标签:
magento
magento-1.9
magento-1.4
【解决方案1】:
如果您想在 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>