Search code examples
magentomagento-1.9

How to show product description at home page in magento


Am show all products to home page,its working fine.But its showing product price,image only now want to show product description also in home page how to show product description at home page?

<?php $_description = $_product->getProduct()->getDescription(); ?>

Not working the above code i put ,

app/design/frontend/rwd/default/temaplate/catalog/product/list.phtml

Solution

  • This should give you description of product

    $_product->getData('short_description')
    

    or

    $_product->getShortDescription()