如何在产品的简短描述中添加一个通用段落。 Magento 1
How to add a common paragraph in Short description of product . Magento 1
我的网站上有很多产品。对于所有这些产品,我想在简短描述后写上 "please contact : xxx-xxx-xx"。我想知道我需要在哪个 php 文件中编辑以在我的产品描述中添加这个公共段落。
如果您想在 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>
我的网站上有很多产品。对于所有这些产品,我想在简短描述后写上 "please contact : xxx-xxx-xx"。我想知道我需要在哪个 php 文件中编辑以在我的产品描述中添加这个公共段落。
如果您想在 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>