Skip to content

Instantly share code, notes, and snippets.

@ScarletPonytail
Created March 10, 2017 15:06
Show Gist options
  • Save ScarletPonytail/4c568e399afc51f262518419b4a5ee4e to your computer and use it in GitHub Desktop.
Save ScarletPonytail/4c568e399afc51f262518419b4a5ee4e to your computer and use it in GitHub Desktop.
Magento - Remove additional <br> in short description
<!-- File Path: app/design/frontend/rwd/default/template/catalog/product/view.phtml -->
<!-- Replace this... -->
<?php echo $_helper->productAttribute($_product, nl2br($_product->getShortDescription()), 'short_description') ?>
<!-- ...with this -->
<?php echo $_helper->productAttribute($_product, $_product->getShortDescription(), 'short_description') ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment