How to add a common paragraph in Short description of product . Magento 1

72 Views Asked by At

I have many product in my website . And for all this product i want to write "please contact : xxx-xxx-xx" after the short description . I want to know in which php file i need to edi for to add this common paragraph in my product description .

1

There are 1 best solutions below

0
NID On BEST ANSWER

If you want it in the product listing page then you will have to navigate to :

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

In this file look for this line:

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

If you want to add it to the product details page then you should navigate to:

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

and add your sentence below this line:

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