Created
March 10, 2017 15:06
-
-
Save ScarletPonytail/4c568e399afc51f262518419b4a5ee4e to your computer and use it in GitHub Desktop.
Magento - Remove additional <br> in short description
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- 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