Please find the template file that is responsible for displaying a list of products on the page. This file can be here:
- app/design/frontend/base/default/template/catalog/product/list.phtml or
- app/design/frontend/default/[your theme]/template/catalog/product/list.phtml
You will need to remove the following code:
- <?php echo $_helper->productAttribute($_product, $_product->getShortDescription(), ‘short_description’) ?> Or
- <div class=”short-description”><?php echo $_product->getShortDescription() ?></div>
Alternatively you can hide the div using css by following way:
search the class “short-description” into your theme css and add “display:none;”