Magento 1.9.2.3 – Fix Product Short Description Not Displaying on Product Page

magento-1.9product

I am using a custom template on 1.9.2.3 , and I have provided a short description while adding the product in Admin Panel.

I am expecting to see the SHORT description somewhere below the product Name or Above Product Price.
enter image description here

However, the short description is not displaying.

My question: Am I missing any configuration in the Admin panel?

Or Am I required to make some changes in the some files in order to display the short description? If yes, which file has to be modified.

Best Answer

Use below code to call short description in design/frontend/your_package/default/catalog/product/view.phtml

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